<html>
<head>
<title>Spirogyra</title>
</head>
<body>
<p>
<img src="leeling.gif" alt="spirogyra" width="200" height="150" />
<br />
spirogyra
</p>
<p>
Collected by: (your name)
</p>
<p>
<a href="http://www.comfsm.fm/~dleeling/botany.html">Botany Course Home Page
</a>
</p>
</body
</html>
<html> | open html file |
<head> | open file header |
<title>file title</title> | title of the file ( the slash always means "close operation") |
</head> | close file header |
<body> | open text body of file |
<p> | Start new Paragraph. Plain text is enclosed in between <p> and </p> |
<img src="ovate.jpg" alt="ovate" width="200" height="150" /> | load an image with alternate text property set to value in quotes and with the specified width and height. Note the "close operation" slash is included in the tag. |
<br /> | line BReak or line feed without starting a new paragraph. Also closes itself. |
</p> | close paragraph |
<p> | start new paragraph |
<a href="http://www.comfsm.fm/~dleeling/botany.html"> | hyperlink address to another web site or page |
Botany Course Home Page | hyperlink face text |
</a> | close hyperlink |
</p> | close Paragraph |
</body> | close body |
</html> | close html file |
<hr />Horizontal Rule (line)
<h1>heading level one</h1>
<h2>heading level two</h2>