<p>A simple page put together using HTML. <strong>A simple page put together using HTML.</strong> A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML.</p>
<h2>Why this is</h2>
<ul>
<li>To learn HTML</li>
<li>
To show off
<ol> <!—Just continue by turning over the page -->
<li>To my boss</li>
<li>To my friends</li>
<li>To my cat</li>
<li>To the little talking duck in my brain</li>
</ol>
</li>
<li>Because I've fallen in love with my computer and want to give her some HTML loving.</li>
</ul>
<h2>Where to find the tutorial</h2>
<p><a href="http://www.htmldog.com"><img src="http://www.htmldog.com/images/logo.gif" width="157" height="70" alt="HTML Dog logo" /></a></p>
</html>
Lesson 2: Copy this html exactly
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<html>
<head>
<title>My first styled page</title>
<style type="text/css">
body {
font-family: Georgia, "Times New Roman",
Times, serif;
color: purple;
background-color: #d8da3d }
h1 {
font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif }
</style>
</head>
<body>
<!-- Site navigation menu -->
<ul class="navbar">
<li><a href="/index.html">Home page</a>
<li><a href="/musings.html">Musings</a>
<li><a href="/town.html">My town</a>
<li><a href="/links.html">Links</a>
</ul>
<!-- Main content -->
<h1>My first styled page</h1>
<p>Welcome to my styled page! </p>
<p>It lacks images, but at least it has style.
And it has links, even if they don't go
anywhere… </p>
<p>There should be more here, but I don't know
what yet. </p>
<!-—If you are still with me, go to the following web site -->
Comments (0)
You don't have permission to comment on this page.