Today we will start off with the basics.
HTML stands for 'hyper text markup langauge'.
When using html, you start off with <html> tag and end with </html> tag. The / is very important when it comes to closing out tags.
ex: <html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
The head tag holds the title and other important info. The body tag holds the real content. <h1>to<h6> can make your script a certain size. 1 is the largest and 6 is the smallest. look 4 tutorial 2.
^Because of the recent custom tags, HTML's obsolete for users on this site. However, this thread is supposed to be an HTML tutorial for newcomers who want to make their own sites.