Advertisement
Guest User

Untitled

a guest
Jul 9th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.13 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3.     <head>
  4.         <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
  5.         <title>index</title>
  6.             <!-- NOTE FROM X1M!
  7.                     Use the tab button (with two arrows) and code with structure.
  8.                     Also, stop using <br /> all the time and use height in CSS.
  9.             -->
  10.         <style type="text/css">
  11. body
  12. {
  13.     /* background-image: url('img/bg.gif'); */
  14.     background-color: grey;
  15. }
  16.  
  17. hr
  18. {
  19.     width:100%;
  20.     height:1px;
  21.     padding:0px;
  22. }
  23.  
  24. #header
  25. {
  26.     background-color: #000;
  27.     padding: 2px;
  28.     width: 596px;
  29. }
  30.  
  31. #logo
  32. {
  33.     background-image: url('img/logo.png');
  34.     width: 122px;
  35.     height: 38px;
  36.     position: left;
  37. }
  38.  
  39. #sr
  40. {
  41.     border: 0px solid #000;
  42.     width: 600px;
  43.     align: center;
  44. }
  45.  
  46. #lclmn
  47. {
  48.     background-color: #000;
  49.     float:left;
  50.     width: 96px;
  51.     padding: 2px;
  52.     height: 218px;
  53.     color: gray;
  54.     background-repeat: repeat-y;
  55. }
  56.  
  57. #rclmn {
  58.     background-color: red;
  59.     float: right;
  60.     width: 496px;
  61.     padding: 2px;
  62.     height: 218px;
  63. }
  64.  
  65. #navi
  66. {
  67.     background-color: #111;
  68.     width: 596px;
  69.     padding: 2px;
  70. }
  71.  
  72. #footer
  73. {
  74.     background-color: #000;
  75.     padding: 2px;
  76.     color: 555555;
  77.     width: 596px;
  78.     border: 0px solid;
  79.     float: right;
  80. }
  81.  
  82. form
  83. {
  84.     display: inline;
  85. }
  86.  
  87. a:link { color:#555; }
  88. a:visited { color:#666; }
  89. a:hover { background-color: #222; color: #444; }
  90. a:active { color:#333; }
  91.         </style>
  92.     </head>
  93.     <body>
  94.         <center>
  95.         <div id="sr">
  96.             <div id="header">
  97.                 <div style="text-align: left;" id="logo"></div>
  98.             </div>
  99.             <div id="navi"><a href="#">Navigator</a> - <a href="#">Navigator</a> - <a href="#">Navigator</a></div>
  100.             <div style="text-align: left;" id="rclmn" >Contents</div>
  101.             <div style="text-align: left;" id="lclmn" valign="bottom"><br />
  102.                 <form action='login.php' method='post'>
  103.                     Username:<br />
  104.                     <input type='text' name='username' size='9.5'><br />
  105.                     Password:<br />
  106.                     <input type='password' name='password' size='9.5'><br />
  107.                     <input type='submit' value='Login!'>
  108.                 </form><br />
  109.             New here? <a href="register.php">Register now!</a></div>
  110.         <div id="footer">Copyrights here</div>
  111. </div>
  112. </center>
  113. </body>
  114. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement