<html>
<head>
<title>Title of the page</title>
</head>
<body>
This is where the text goes.
<b>
This text is bold</b>
<br>
<i>
This text is italic</i>
<p>This is a paragraph</p>
<a href="LINK">Text for the link here</a>
<img src="IMG LOCATION">
</body>
</html>
Now, ill explain this.
<b> and </b> make the text inside them bold. They go in the <body> tags.
<i> and </i> make the text inside them italic. They also go in the <body> tags.
<br> makes it go to a new line, basically like pushing enter.
<p> makes space above the paragraph and below it, so its its own paragraph.
<a> is the anchor tag. to make it a link, you make it <a href="LINK">Text for the link here</a>
Example <a href="http://www.google.com">Google</a> Would look like this:
Google
the <img> tag makes an image. You do <img src="LOCATION"> src stands for source. So you put in the link for the image and tada, you have your image. The code
<img src="http://pc101.com/images/satellite/header/logo.gif"> Would look like this:
Questions an comments greatyly appreciated
