-
Notifications
You must be signed in to change notification settings - Fork 0
/
input_text.html
59 lines (54 loc) · 1.56 KB
/
input_text.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="dist/ios7css.css" type="text/css">
<script src="js/track.js"></script>
</head>
<body>
<form>
<h3>Normal:</h3>
<div class="form-item">
<label for="a">Name</label>
<input id="a" type="text" value="John Doe" />
</div>
<div class="form-item">
<label for="b">Address</label>
<input id="b" type="text" placeholder="Address goes here!" />
</div>
<h3>Inset:</h3>
<div class="inset">
<div class="form-item">
<label for="c">Name</label>
<input id="c" type="text" value="John Doe" />
</div>
<div class="form-item">
<label for="d">Address</label>
<input id="d" type="text" placeholder="Address goes here!" />
</div>
</div>
<h3>Grouped:</h3>
<div class="form-group">
<div class="form-item">
<label for="e">Name</label>
<input id="e" type="text" value="John Doe" />
</div>
<div class="form-item">
<label for="f">Address</label>
<input id="f" type="text" placeholder="Address goes here!" />
</div>
</div>
<h3>Grouped & inset:</h3>
<div class="form-group inset">
<div class="form-item">
<label for="g">Name</label>
<input id="g" type="text" value="John Doe" />
</div>
<div class="form-item">
<label for="h">Address</label>
<input id="h" type="text" placeholder="Address goes here!" />
</div>
</div>
</form>
</body>
</html>