Mercurial > hg-website
comparison original/templates/form.html @ 244:4b97017259f9
Move the original site into a single folder to reduce clutter.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 23 Sep 2009 20:05:13 -0400 |
parents | templates/form.html@93dadfa3c4b6 |
children |
comparison
equal
deleted
inserted
replaced
240:85a7a53db1a5 | 244:4b97017259f9 |
---|---|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
2 "http://www.w3.org/TR/html4/loose.dtd"> | |
3 <html> | |
4 <head> | |
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
6 <link href="styles/styles.css" type="text/css" rel="stylesheet"> | |
7 <script type="text/javascript" src="javascript/typeface.js"></script> | |
8 <script type="text/javascript" src="javascript/optimer_regular.typeface.js"></script> | |
9 <title>mercurial</title> | |
10 </head> | |
11 <body> | |
12 | |
13 <h1 id="logo"><a href="/">mercurial</a></h1> | |
14 | |
15 <ul id="nav" class="typeface-js"> | |
16 <li class="active"><a href="javascript:void(0);">about</a></li> | |
17 <li><a href="javascript:void(0);">download</a></li> | |
18 <li><a href="javascript:void(0);">extensions</a></li> | |
19 <li><a href="javascript:void(0);">docs</a></li> | |
20 <li><a href="javascript:void(0);">community</a></li> | |
21 </ul> | |
22 | |
23 <form id="search" method="post" action="index.html"> | |
24 <fieldset> | |
25 <legend>Search form</legend> | |
26 <label for="keyword">keyword</label> | |
27 <input class="text" type="text" name="keyword" id="keyword"> | |
28 <input class="submit" type="submit" value="search"> | |
29 </fieldset> | |
30 </form> | |
31 | |
32 <div id="content"> | |
33 <div class="row"> | |
34 <div class="col big"> | |
35 <h1>Feedback</h1> | |
36 <form method="post"> | |
37 <fieldset> | |
38 <p>Sample form</p> | |
39 <ol> | |
40 <li> | |
41 <label for="name">Name</label> | |
42 <input type="text" id="name"> | |
43 </li> | |
44 <li> | |
45 <label for="email">Email</label> | |
46 <input type="text" id="email"> | |
47 </li> | |
48 <li> | |
49 <label for="ideea">Your ideea</label> | |
50 <textarea id="ideea" rows="5" cols="20"></textarea> | |
51 </li> | |
52 <li class="submit"> | |
53 <input type="submit" value="Send"> | |
54 </li> | |
55 </ol> | |
56 </fieldset> | |
57 </form> | |
58 </div> | |
59 <div class="col"> | |
60 <h2>Latest News</h2> | |
61 <ul> | |
62 <li>or whatever will be</li> | |
63 <li>in this column</li> | |
64 </ul> | |
65 </div> | |
66 </div> | |
67 | |
68 </div> | |
69 | |
70 <div id="footer"> | |
71 <a href="http://www.designpunct.ro">punct</a> / | |
72 <a href="http://www.avantlumiere.com/">bitbucket</a> / | |
73 <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/"> | |
74 | |
75 <img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/us/80x15.png" /> | |
76 </a> | |
77 <br /> | |
78 This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License</a>. | |
79 </div> | |
80 | |
81 </body> | |
82 </html> |