-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabel_widths.html
More file actions
31 lines (26 loc) · 837 Bytes
/
Copy pathlabel_widths.html
File metadata and controls
31 lines (26 loc) · 837 Bytes
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
<!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>
<div class="form-item">
<label for="a" class="half split">Half</label>
<input id="a" type="text" placeholder="Placeholder.." />
</div>
<div class="form-item">
<label for="b" class="third split">Third</label>
<input id="b" type="text" placeholder="Placeholder.." />
</div>
<div class="form-item">
<label for="c" class="fourth split">Fourth</label>
<input id="c" type="text" placeholder="Placeholder.." />
</div>
<div class="form-item">
<label for="d" class="fifth split">Fifth</label>
<input id="d" type="text" placeholder="Placeholder.." />
</div>
</body>
</html>