Advertisement
Guest User

Untitled

a guest
May 31st, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.15 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>contact.html</title>
  6. <link href="style.css" rel="stylesheet" type="text/css" />
  7. </head>
  8.  
  9. <body>
  10. <div id="container">
  11. <div id="header">
  12. <h1>title</h1>
  13. <h2>&nbsp;&nbsp;&nbsp;&nbsp;description</h2>
  14. <br />
  15. <hr />
  16.  
  17. </div> <!-- end header -->
  18.  
  19. <div class="spacer"></div>
  20. <div id="left">
  21.  
  22. <div id="leftcontent">
  23.  
  24.     <ul>
  25.     <li>
  26.         <a href="./index.html">home</a>
  27.         <p>home page</p>
  28.         <a href="./about.html">about</a>
  29.         <p>ekaj</p>
  30.         <a href="./blog.html">blog</a>
  31.         <p>discussions</p>
  32.         <a href="./things.html">things</a>
  33.         <p>things</p>
  34.         <a href="./contact.html"><strong>contact</strong></a>
  35.         <p>email or other</p>
  36.         <a href="./etc.html">etc</a>
  37.         <p> anything else</p>
  38.     </li>
  39.     </ul>
  40.  
  41.  
  42.  
  43. <p>&nbsp;</p>
  44.  
  45. <!--
  46. <h3>News</h3>
  47. <p class="news">1/14 | Idea conceived<br />1/17 | Semester starts<br />1/19 | Design completed</p>
  48. -->
  49.  
  50.  
  51. </div> <!-- end left content -->
  52. </div> <!-- end left division -->
  53. <div id="main">
  54. <div id="maincontent">
  55.  
  56. <h3 class="top_main_heading">contact</h3>
  57. <p>If there's anything you have a question about, you can use the form below to ask.
  58. <br />
  59. <br />
  60.  
  61. <form name="input" action="./other/submit.php" method="post">
  62. <input type="text" maxlength="30" value="name" onFocus="if(this.value==this.defaultValue)this.value=''" name="name">
  63. <br />
  64. <input type="text" maxlength="30" value="email" onFocus="if(this.value==this.defaultValue)this.value=''" name="email">
  65. <br />
  66. <textarea name="message" maxlength="1000" cols="40" rows="5" onFocus="if(this.value==this.defaultValue)this.value=''">write your message here</textarea>
  67. <br />
  68.  
  69. <input type="submit" value="Submit">
  70. </form>
  71.  
  72. </p>
  73. </div> <!-- end main content section -->
  74. </div>
  75. <div id="footer"><div class="spacer"></div>
  76. <hr />
  77.  
  78. <p class="right">design by Adam Patricka</p>
  79. <p>&nbsp;</p>
  80. </div> <!-- end footer -->
  81.  
  82. </div> <!-- end container -->
  83. </body>
  84.  
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement