HTML BASICS
Starting OUT:
<html>DESCRIBES THE WEBPAGE
<head>
<title>This is the title of the page that is found on a Web Browser Tab <title>
</head>
<body>
<p> THIS IS THE CONTENT OF YOUR WEB PAGE -- EVERYTHING THAT IS VISIBLE. <p>
</body>
</html>
6. Tags --
A Tag is are key words in HTML -- Hypertext Markup Language
Each tag has an opening and closing tag surrounded by angle brackets -- < >
A closing tag adds a slash -- like this: </ >
For example: The entire HTML document is contained between opening and closing HTML tags:
<html> and </html>
7. HEADINGS --
Standards sizes: defined by the following tags <h1>, <h2>, <h3>, <h4>, <h5>, <h6>
For example: <h1> This is the large heading used in an html document. </h1>
Try the others ...
LINK TO A SLIDE SHOW -- FOLLOW ALONG AND TRY EXAMPLES: HERE.
- Open a Text Editor -- (Use Notepadd ++) and "Save As" index.html on your desk top.
- Add the first set of Basic TAGS/Elements/Attributes ... to your HTML doc.
- HERE IT IS: (Just copy and paste, but you will need to memorize it eventually.)
- <!Doctype html>
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html> - EXPLANATION
<html>DESCRIBES THE WEBPAGE
<head>
<title>This is the title of the page that is found on a Web Browser Tab <title>
</head>
<body>
<p> THIS IS THE CONTENT OF YOUR WEB PAGE -- EVERYTHING THAT IS VISIBLE. <p>
</body>
</html>
6. Tags --
A Tag is are key words in HTML -- Hypertext Markup Language
Each tag has an opening and closing tag surrounded by angle brackets -- < >
A closing tag adds a slash -- like this: </ >
For example: The entire HTML document is contained between opening and closing HTML tags:
<html> and </html>
7. HEADINGS --
Standards sizes: defined by the following tags <h1>, <h2>, <h3>, <h4>, <h5>, <h6>
For example: <h1> This is the large heading used in an html document. </h1>
Try the others ...
LINK TO A SLIDE SHOW -- FOLLOW ALONG AND TRY EXAMPLES: HERE.