Before you start doing anything on a new page, you should put this in:
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>
The two html tags, at the very top and very bottom, say that everything between them is html coding. Simple enough.
Next come the head code, which is a little harder to explain. You cant see direct results of the codes that are put in here, but you see the results of them on your page.
Inside the head tags are the title tags. Im not sure about Mac computers but on Windows computers it changes the name of the site up on that blue strip, way up there at the top of your page.
So then we end the head tags and start on the body. This is where allmost ALL of the stuff goes. This written in here can be seen directly on the webpage. If you type in here without using tags, it can be seen like normal writing on the site.
So then we end the body, and end the html.
Ok, so now we have the basic layout done, we start adding stuff onto the page. The simple tags that webdesigners use every day are: Bold, Italic, Image, Link and the Break tag.
| Code | What does it do? | Example |
| <i> </i> | Makes anything written between them slanted. | You want text in italics? This is how you do it! |
| <b> </b> | Makes anything written between them look chunkier. | You want text in italics? Too bad! This text is bold! |
| <img src=" "> | Allows you to add an image onto the page. This tag dosent need an ending. You put the source of an image in between the two " 's. | |
| <a href=" "> LINK </a> | This tag creats a link between one page and another page. Just put the source of the other page between the " 's, then the name of the link before you end it. | Link |
| <br> | I think this is the most used tag in all of html history. It simply makes the text go to the next line. If you simple press Enter, or Return the computer does not understand it and wont go to the next line. Oh, and it dosent need an ending tag. | See how this text suddenly stops and goes to the next line? thats because i put a <br> after the word "stops". |