Advertisement
gitlez

Untitled

Jun 5th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  5.         <title>Idocracy.com-Home Page</title>
  6.         <style type="text/css">
  7.             body {
  8.                 background-color: black;
  9.                 width: 940px; /* Set to whatever width you want */
  10.                 margin: auto;
  11.             }
  12.             #logo {
  13.                 display: block;
  14.                 margin: auto;
  15.             }
  16.             #navBar {
  17.                 background-image: url('http://idocracy.com/images/navbar.gif');
  18.                 background-repeat: no-repeat;
  19.                 background-position: bottom;
  20.                 width: 768px;
  21.                 margin: auto;
  22.             }
  23.             td {
  24.                 color: blue;
  25.                 text-align: center;
  26.             }
  27.             p {
  28.                 color: red;
  29.             }
  30.             a {
  31.                 text-decoration: none;
  32.                 text-weight: none;
  33.             }
  34.             a:link, a:visited {
  35.                 color: blue;
  36.             }
  37.             a:hover {
  38.                 text-decoration: underline;
  39.                 text-weight: bold;
  40.                 color: yellow;
  41.             }
  42.         </style>
  43.     </head>  
  44. <body>
  45. <img src="http://idocracy.com/images/logo2.gif" id="logo" />
  46.     <div id="navBar">
  47.         <table border="0" align="center" cellpadding="2" cellspacing="2" width="768px">
  48.             <tr>
  49.                 <td><a href="index.html">Home</a></td>
  50.                 <td><a href="about.html">About Me</a></td>
  51.                 <td><a href="gallery.html">Gallery</a></td>
  52.                 <td><a href="forum" target="_blank">Forum</a></td>
  53.             </tr>
  54.         </table>
  55.     </div>
  56.     <p>Welcome to idocracy.com</p>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement