Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 1.60 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2.    "http://www.w3.org/TR/html4/loose.dtd">
  3.  
  4. <html lang="en">
  5. <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7.         <title>index</title>
  8.         <meta name="generator" content="TextMate http://macromates.com/">
  9.         <meta name="author" content="酒井参辉">
  10.         <style>
  11.                 body{ width: 960px; margin: 0 auto;}
  12.                 header{ overflow: auto; width:100%; border-bottom: 10px solid #5082B8;}
  13.                 nav{ border: 1.5px solid black; width: 240px; margin: 10px 0 0 20px; min-height: 480px; float: left;}
  14.                 nav ul { list-style: none; padding: 0px;}
  15.                 nav ul li a { color: black; margin: 15px; display: block;}
  16.                 .logo{ display: block; float:left;}
  17.                 .page_title{ display: block; float:right; margin-top: 50px;}
  18.                 .container{ display: inline-block; margin: 20px; width: 658px;}
  19.                 .container form label { display:block; padding-bottom: 10px;}
  20.                 .container textarea { overflow: auto; width: 450px; height: 190px;}
  21.                 input[type="submit"]{ margin: 20px 0 0 395px; display: block;}
  22.         </style>
  23.         <!-- Date: 2011-07-02 -->
  24. </head>
  25. <body>
  26.         <header>
  27.                 <h1 class="logo">Logo</h1>
  28.                 <div class="page_title">Student's Login Page</div>
  29.         </header>
  30.        
  31.         <nav>
  32.                 <ul>
  33.                         <li><a href="#">Home</a></li>
  34.                         <li><a href="#">Profile</a></li>
  35.                         <li><a href="#">Weekly Essay</a></li>
  36.                         <li><a href="#">Logout</a></li>
  37.                 </ul>
  38.         </nav>
  39.        
  40.         <div class="container">
  41.                 <h2>Weekly Essay Topics</h2>
  42.                 <form>
  43.                         <label for="reponse">Response:</label>
  44.                         <textarea name="response"></textarea>
  45.  
  46.                         <input type="submit" value="submit" />
  47.                 </form>
  48.         </div>
  49. </body>
  50. </html>