Posted by kpschroeder on 08/23/06 15:19
Hello,
This is the first day I've started to work with HTML. That being said
I have a simple page layout with a navigation pane. The text that
appears in the navigation pane is stuck all the way at the top of the
frame. I would like to move the text down quite a bit. How do I do
this?
Here's the code I have:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Snowkist Tree Farm</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shed.html">Painting a Shed</a></li>
<li><a href="house.html">Our House</a></li>
<li><a href="pets.html">McKinley and Other Pets</a></li>
</ul>
<p class="footer">
© 2005 <a href="http://www.snowkisttrees/">Snowkist Trees</a> </p>
</div>
<div id="main">
<h1>Snowkist Tree Farm</h1>
<p class="topline">
<img src="images/pets1_dogs.jpg" width="250" height="188" alt="Shasta
and McKinley" class="noborder">
Shasta and McKinley do seem to like each other.
</p>
<br clear="all" />
</div>
/body>
</html>
Any info would be helpful!
Thanks
Navigation:
[Reply to this message]
|