Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bobbydeveaux
Created March 24, 2014 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbydeveaux/9739616 to your computer and use it in GitHub Desktop.
Save bobbydeveaux/9739616 to your computer and use it in GitHub Desktop.
A simple website
<html>
<head>
<title>This is my title</title>
<style type="text/css">
ul {
background-color: #ff6600;
}
ul li{
list-style-type: none;
display: inline-block;
padding: 5px 10px 5px 10px;
}
table tr{
background-color: #EFEFEF;
}
table tr:nth-child(even) {
background-color: #333333;
color: #ffffff;
}
</style>
</head>
<body>
<h1>Accessories</h1>
<ul>
<li><a href="myawesomewebsite.html">Home</a></li>
<li><a href="accessories.html">Accessories</a></li>
<li>Models</li>
<li>Insurance</li>
</ul>
<div>
These are my favorite car parts:
<table>
<thead>
<tr>
<td>Part#</td>
<td>Description</td>
<td>Price</td>
</tr>
</thead>
<tbody>
<tr>
<td>00001</td>
<td>Tyres</td>
<td>&pound;189.00</td>
</tr>
<tr>
<td>00002</td>
<td>Engine</td>
<td>&pound;2250.00</td>
</tr>
<tr>
<td>00003</td>
<td>Exhaust</td>
<td>&pound;350.00</td>
</tr>
<tr>
<td>00004</td>
<td>Steering Wheel</td>
<td>&pound;250.00</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment