autumny
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>autumn - a free web template</title>
<style type='text/css'>
body {
background:#C8470A none;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
margin:0 auto;
padding:0;
color:#333;
}
* {
margin:0 auto;
padding:0;
}
*:focus {
outline:none;
}
/***
HEADERS
***/
h1, h1 a, h1 a:hover {
color:#FFFFFF;
font-family:"Trebuchet MS",Verdana,Arial;
font-size:46px;
font-weight:bold;
letter-spacing:-4px;
text-decoration:none;
}
h2 {
color:#F35912;
position:relative;
top:-15px;
}
h3 {
font-family:Arial,Helvetica,sans-serif;
font-size:27px;
font-weight:bold;
padding-bottom:10px;
letter-spacing:-2px;
}
h4 {
font-size:18px;
padding-bottom:5px;
color:#000000;
}
h5 {
font-size:14px;
padding-bottom:10px;
}
/***
ELEMENTS
***/
p {
line-height:1.8em;
margin-bottom:20px;
}
code, blockquote {
border-left:10px solid #ddd;
padding:5px;
margin:15px 0;
display:block;
}
table {
width:100%;
text-align:left;
font-size:11px;
color:#444;
margin-bottom:25px;
}
td, th {
padding:5px 10px;
}
th {
color:#fff;
background-color:#C8470A;
border-top:3px solid #A63C09;
}
td {
border-bottom:1px solid #e0e0e0;
}
ul, ol {
margin:0 0 30px 30px;
}
li {
padding-bottom:5px;
}
a {
color:#C8470A;
}
a:hover {
color:#A63C09;
}
fieldset {
border:none;
}
fieldset legend {
background-color:#ccc;
display:block;
padding:5px;
color:#777777;
text-transform:uppercase;
font-weight:bold;
}
fieldset form {
background-color:#ccc;
padding:5px 10px 1px;
}
fieldset form input, fieldset form textarea, fieldset form select {
border:1px solid #888;
font-family:Arial, Helvetica, sans-serif;
padding:3px;
color:#555;
font-size:13px;
}
/***
WRAPPER
***/
div#wrapper {
width:900px;
margin:0 auto;
}
/***
CONTENT
***/
div#content {
float:left;
width:550px;
border-left:10px solid #A63C09;
border-right:10px solid #A63C09;
}
div#header {
padding:10px 20px;
background:#A63C09 url('autumny-images/header.jpg') no-repeat scroll top left;
}
div#header h1, div#header h2 {
text-align:right;
}
div#header h2 {
color:#e0e0e0;
}
div#body {
padding:10px 20px;
background-color:#ffffff;
}
div#body h1 {
color:#A63C09;
}
div#body h2 {
top:0;
}
/***
SIDEBAR
***/
div#sidebar {
float:right;
width:300px;
padding-top:100px;
padding-left:20px;
}
div#sidebar a {
color:#fff;
}
div#sidebar a:hover {
color:#f4f4f4;
}
div#sidebar ul {
margin:0;
padding:0;
list-style:none;
}
div#sidebar ul li h4 {
color:#FFFFFF;
font-family:'Lucida Grande','Lucida Sans Unicode',Geneva,Verdana,Sans-Serif;
font-size:25px;
font-weight:normal;
padding:0 0 5px;
}
div#sidebar ul li ul {
border-top:1px solid #A63C09;
margin-bottom:25px;
}
div#sidebar ul li ul li {
border-bottom:1px solid #A63C09;
padding:7px 10px;
color:#fff;
font-size:12px;
}
div#sidebar ul li ul li.selected {
background-color:#A63C09;
}
div#sidebar ul li ul li a {
text-decoration:none;
font-family:"Trebuchet MS", Verdana, Arial;
font-weight:bold;
}
div#sidebar ul li ul li a:hover {
text-decoration:underline;
}
/***
FOOTER
***/
div.copyright {
border-top:1px solid #e0e0e0;
}
div.copyright p {
margin:0;
padding:10px 0;
color:#999;
text-align:center;
font-size:11px;
}
div.copyright p a {
font-weight:bold;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<div id="header">
<h1><a href="#">sitename</a></h1>
<h2>your slogan here</h2>
</div>
<div id="body">
<!-- CONTENT -->
<h1>Heading H1</h1>
<h2>Heading H2</h2>
<h3>Heading H3</h3>
<h4>Heading H4</h4>
<h5>Heading H5</h5>
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
<ol>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ol>
<h3>Code</h3>
<code><? echo('Hello world'); ?></code>
<h3>Table</h3>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>1</td>
<td>John Smith</td>
<td>28</td>
</tr>
<tr>
<td>2</td>
<td>Fred James</td>
<td>49</td>
</tr>
<tr>
<td>3</td>
<td>Rachel Johnson</td>
<td>19</td>
</tr>
</table>
<h3>Form</h3>
<fieldset>
<legend>Form legend</legend>
<form action="#" method="get">
<p><label for="name">Name:</label><br />
<input type="text" name="name" id="name" value="" /><br /></p>
<p><label for="email">Email:</label><br />
<input type="text" name="email" id="email" value="" /><br /></p>
<p><label for="message">Message:</label><br />
<textarea cols="60" rows="11" name="message" id="message"></textarea><br /></p>
<p><input type="submit" name="send" class="formbutton" value="Send" /></p>
</form>
</fieldset>
<p> </p>
<!-- END CONTENT -->
<div class="copyright">
<p>© 2009 sitename. <a href="http://validator.w3.org/check/referer" title="valid XHTML">XHTML</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer" title="valid CSS">CSS</a>. Design: <a href="http://www.spyka.net">Free CSS Templates</a> • <a href="http://www.justfreetemplates.com">Free Web Templates</a>
</p>
</div>
</div>
</div>
<div id="sidebar">
<ul>
<li>
<h4>Pages</h4>
<ul>
<li><a href="index.html">Index</a></li>
<li class="selected"><a href="examples.html">Examples</a></li>
<li><a href="#">Research</a></li>
<li><a href="#">Case studies</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</li>
<li>
<h4>Links</h4>
<ul>
<li><a href="http://www.spyka.net" title="spyka Webmaster resources">spyka webmaster</a></li>
<li><a href="http://www.justfreetemplates.com" title="free web templates">Free web templates</a></li>
<li><a href="http://www.spyka.net/forums" title="webmaster forums">Webmaster forums</a></li>
<li><a href="http://www.awesomestyles.com/mybb-themes" title="mybb themes">MyBB themes</a></li>
<li><a href="http://www.awesomestyles.com" title="free phpbb3 themes">phpBB3 styles</a></li>
</ul>
</li>
<li>
<h4>Sponsors</h4>
<ul>
<li><a href="http://www.themeforest.net/?ref=spykawg" title="premium templates">ThemeForest</a> - premium HTML templates, WordPress themes and PHP scripts</li>
<li><a href="http://www.dreamhost.com/r.cgi?259541" title="web hosting">Web hosting</a> - 50 dollars off when you use promocode <strong>awesome50</strong></li>
<li><a href="http://www.4templates.com/?aff=spykawg" title="4templates">4templates</a> - brilliant premium templates</li>
</ul>
</li>
</ul>
</div>
</div>
</body>
</html>
Related examples in the same category