HTML Notes

Click Here to view the webpage this code makes.

[code language=”html”]</span>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Demo</title>
<style type="text/css">
body {
background-color: navy;
color: white;
margin-left: 20px;
}
.red {
color: red;
}
</style>
</head>
<body>
<img src="images/logo.png" height=100px>
<h1 class="red">Hello World!</h1>
<h2>Hello World!</h2>
<h3>Hello World!</h3>
<h4>Hello World!</h4>
<h5>Hello World!</h5>
<h6>Hello World!</h6>
<p>This <i>is my Demo</i>…</p>
<p><b>Bold</b> <br>
<i>Italics</i> <br>
<u>Underline</u></p>
<ul>
<li class="red">Red Dog</li>
<li>Blue Cat</li>
<li>Green Mouse</li>
</ul>
<p>Let’s go to <a href="http://apple.com/">apple</a></p>
</body>
</html>
[/code]