-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
67 lines (45 loc) · 1.57 KB
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<head>
<meta charset="utf-8">
<title>Metal - Responsive Design CSS Grid</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="grid.css">
<link rel="stylesheet" href="form.css">
<link rel="stylesheet" href="site.css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28953049-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="container">
<div class="row">
<div class="twelveCol">
<h1>METAL V0.2.3 - Responsive CSS Grid</h1>
<h2>FAST RESPONSIVE WEBSITES</h2>
</div>
</div>
<div class="row">
<div class="sixCol">
<h3>Search</h3>
<form>
<input type="text" placeholder="Search">
<button type="submit">Search</button>
</form>
</div>
<div class="sixCol">
<!-- <h3>Search</h3> -->
</div>
</div>
</div>
</body>
</html>