Pages

Sunday, May 15, 2011

HTML #1: Basic

HTML headings:  [h1-h6]

<h1>This is a heading</h1>
HTML  Paragraphs:
<p>This is a paragraph.</p>
HTML links:

<a href="http://www.w3schools.com">This is a link</a>
HTML images:
<img src="w3schools.jpg" width="104" height="142" />

Save as: *.htm or *html

<html>
<body>

<h1>This is my Main Page</h1>
<p>This is some text.</p>
<p><a href="page1.htm">This is a link to Page 1</a></p>
<p><a href="page2.htm">This is a link to Page 2</a></p>

</body>
</html>

No comments:

Post a Comment