Updated site with stylesheet

This commit is contained in:
Michael P. Soulier 2009-03-15 22:35:39 -04:00
parent 0cfcea2ab3
commit 23b32d0990
2 changed files with 52 additions and 2 deletions

View file

@ -1,12 +1,27 @@
<!-- vim: ts=4 sw=4 et
-->
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>TFTPy - A Pure Python TFTP Implementation</title>
<link href="main.css" name="main" type="text/css" rel="stylesheet" />
</head>
<body bgcolor="whitesmoke">
<body>
<div class="banner">
<h1>TFTPy - A Pure Python TFTP Implementation</h1>
</div>
<div class="menu">
<ul>
<li><a href="#about">About TFTPy</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#plans">Future Plans</a></li>
<li><a href="#code">The Code</a></li>
</ul>
</div>
<div class="content">
<a name="about" />
<h2>About TFTPy</h2>
<p>TFTPy is a pure Python implementation of the
<a href="http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol">Trivial FTP protocol</a>.</p>
@ -25,6 +40,7 @@
downloading is production-ready IMHO, as some of the people using it
tell me.</p>
<a name="features" />
<h2>Features</h2>
<p>At this time, it supports the following RFCs:
<ul>
@ -48,6 +64,7 @@
</ul>
</p>
<a name="plans" />
<h2>Future Plans</h2>
<p>I do have plans for this code before a 1.0 release, including the
following:
@ -63,6 +80,7 @@
</ul>
</p>
<a name="code" />
<h2>The Code</h2>
<p>You can find the latest release at the SourceForge
<a href="http://www.sf.net/projects/tftpy/">Project Page</a>, as a
@ -86,5 +104,6 @@
here</a>.</p>
</p>
<p>Last updated: March 15, 2009.</p>
</div>
</body>
</html>

31
html/main.css Normal file
View file

@ -0,0 +1,31 @@
.banner {
top: 0;
width: 100%;
height: 100px;
text-align: center;
}
.menu {
position: absolute;
left: 0;
top: 100px;
width: 200px;
margin: 10px 10px 10px 10px;
}
.menu li {
list-style-type: circle;
}
.content {
position: absolute;
left: 200px;
right: 0;
top: 100px;
margin: 10px 10px 10px 10px;
}
body {
font-family: arial, verdana, sans-serif;
background: white;
}