<h1>Title</h1>
<h1 align="center">Title</h1>
<html>
<head>
<title>Title</title>
... other headers, meta-tags, etc.
</head>
<body>
... body of the document
</body>
</html>
<h1>An important heading</h1> <h2>A slightly less important heading</h2> <p>This is the first paragraph.</p> <p>This is the second paragraph.</p> <p>This is a really <em>important</em> topic!
<a href="http://www.scs.carleton.ca/~weiss">Home</a><br> <a href="mailto:[email protected]">Send e-mail</a><br> <a href="mailto:[email protected]?subject=205">Send me e-mail about 205</a><br> <a href="example-1.html">Relative link</a>
<ul>
<li>the first list item</li>
<li>the second list item</li>
<li>the third list item</li>
</ul>
<ol>
<li>the first list item</li>
<li>the second list item</li>
<li>the third list item</li>
</ol>
© ™ < >
<img src="metcalfe.jpg" alt="Metcalfe's Law">
<p align="center">
<img src="map.gif" width="384" height="245"
alt="site map" usemap="#sitemap" border="0">
<map name="sitemap">
<area shape="circle" coords="186,44,45"
href="http://www.w3.org/MarkUp/Guide/" alt="Getting Started">
<area shape="circle" coords="42,171,45"
href="http://www.w3.org/MarkUp/Guide/Style.html" alt="A Touch of Style">
<area shape="circle" coords="186,171,45"
alt="Web Page Design">
<area shape="circle" coords="318,173,45"
href="http://www.w3.org/MarkUp/Guide/Advanced.html" alt="Advanced HTML">
</map>
</p>
<table border="1"> <tr><th>Year</th><th>Sales</th></tr> <tr><td>2000</td><td>$18M</td></tr> <tr><td>2001</td><td>$25M</td></tr> <tr><td>2002</td><td>$36M</td></tr> </table>
<html>
<frameset rows="20%,*">
<frame src="top.html" name="top">
<frameset cols="20%,*">
<frame src="left.html" name="left">
<frame src="right.html" name="right">
</frameset>
</frameset>
</html>
<a target="right" href="about.html">About us</a>
<style type="text/css">
h1 {
color: white;
background: black;
}
</style>
<h1>This heading will be displayed in reverse</h1>
tag {
property-1: value-1;
property-2: value-2;
...
}
<style type="text/css">
h2 {
text-transform: uppercase;
font-size: 200%;
font-family: Verdana, Arial, Helvetica;
}
</style>
<h2>Changing the font</h2>