forked from OwlyStuff/amazium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
176 lines (168 loc) · 8.83 KB
/
example.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Amazium example</title>
<meta name="description" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<script type="text/javascript">
/mobi/i.test(navigator.userAgent) && !location.hash && setTimeout(function () {
if (!pageYOffset) window.scrollTo(0, 1);
}, 1000);
</script>
<!-- CSS -->
<link rel="stylesheet" href="includes/base.css">
<link rel="stylesheet" href="includes/amazium.css">
<link rel="stylesheet" href="includes/layout.css">
<!-- Favicons -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/apple-touch-icon-144x144.png" />
<!-- To Top scripts -->
<script type="text/javascript" src="includes/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="includes/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="includes/jquery.ui.totop.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
</head>
<body>
<div class="row">
<div class="grid_12">
<h1>H1 - Heading 1</h1>
<h2>H2 - Heading 2</h2>
<h3>H3 - Heading 3</h3>
<h4>H4 - Heading 4</h4>
<h5>H5 - Heading 5</h5>
<h6>H6 - Heading 6</h6>
<p class="intro">This is some intro text - Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Cras justo odio, dapibus ac facilisis in, egestas eget quam.</p>
<p>This is a nomal paragraph - Nullam id dolor id nibh ultricies vehicula ut id elit. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
<form name="" id="" method="" action="">
<div class="row">
<div class="grid_6">
<fieldset>
<label for="input">Input</label>
<input type="input" name="input" id="input" placeholder="Input" autocomplete="off" tabindex="1" />
</fieldset>
<fieldset class="error">
<label for="name">Name</label>
<input type="name" name="name" id="name" placeholder="Name" autocomplete="off" tabindex="1" />
<small>Invalid entry</small>
</fieldset>
<fieldset>
<label for="text">Text</label>
<input type="text" name="text" id="text" placeholder="Text" autocomplete="off" tabindex="2" />
</fieldset>
<fieldset>
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Password" autocomplete="off" tabindex="3" />
</fieldset>
<fieldset>
<label for="url">URL</label>
<input type="url" name="url" id="url" placeholder="Url" autocomplete="off" tabindex="14" />
</fieldset>
<fieldset>
<label for="search">Search</label>
<input type="search" name="search" id="search" placeholder="Search" autocomplete="off" tabindex="15" />
</fieldset>
</div>
<div class="grid_6">
<fieldset>
<label for="tel">Tel</label>
<input type="tel" name="tel" id="tel" placeholder="Tel" autocomplete="off" tabindex="16" />
</fieldset>
<fieldset>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Email" autocomplete="off" tabindex="13" />
</fieldset>
<fieldset>
<label for="options">Options</label>
<select id="dropdown" name="dropdown" tabindex="18" />
<option selected>Option 1</option>
<option>Option 2</option>
<optgroup label="Option group 1">
<option>Sub option 1</option>
<option>Sub option 2</option>
<option>Sub option 3</option>
</optgroup>
<option>Option 3</option>
</select>
</fieldset>
<fieldset>
<label for="message">Message</label>
<textarea name="message" id="message" placeholder="Message..." tabindex="17"></textarea>
</fieldset>
</div>
</div>
</form>
<form name="" id="" method="" action="" class="hide-lables icons">
<div class="row">
<div class="grid_6">
<fieldset>
<label for="input">Input</label>
<input type="input" name="input" id="input" placeholder="Input" autocomplete="off" tabindex="1" />
</fieldset>
<fieldset class="error">
<label for="name">Name</label>
<input type="name" name="name" id="name" placeholder="Name" autocomplete="off" tabindex="1" />
<small>Invalid entry</small>
</fieldset>
<fieldset>
<label for="text">Text</label>
<input type="text" name="text" id="text" placeholder="Text" autocomplete="off" tabindex="2" />
</fieldset>
<fieldset>
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Password" autocomplete="off" tabindex="3" />
</fieldset>
<fieldset>
<label for="url">URL</label>
<input type="url" name="url" id="url" placeholder="Url" autocomplete="off" tabindex="14" />
</fieldset>
<fieldset>
<label for="search">Search</label>
<input type="search" name="search" id="search" placeholder="Search" autocomplete="off" tabindex="15" />
</fieldset>
</div>
<div class="grid_6">
<fieldset>
<label for="tel">Tel</label>
<input type="tel" name="tel" id="tel" placeholder="Tel" autocomplete="off" tabindex="16" />
</fieldset>
<fieldset>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Email" autocomplete="off" tabindex="13" />
</fieldset>
<fieldset>
<label for="options">Options</label>
<select id="dropdown" name="dropdown" tabindex="18" />
<option selected>Option 1</option>
<option>Option 2</option>
<optgroup label="Option group 1">
<option>Sub option 1</option>
<option>Sub option 2</option>
<option>Sub option 3</option>
</optgroup>
<option>Option 3</option>
</select>
</fieldset>
<fieldset>
<label for="message">Message</label>
<textarea name="message" id="message" placeholder="Message..." tabindex="17"></textarea>
</fieldset>
</div>
</div>
</form>
</div>
</div>
</body>
</html>