-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform_layouts.html
58 lines (57 loc) · 1.62 KB
/
form_layouts.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Form Layouts</title>
<link rel="stylesheet" href="css/form_layouts.css">
</head>
<body>
<form>
<!-- divs are being used only to separate table-rows with CSS -->
<div>
<label for="fname"><span class="shotcutkey">F</span>irst Name
</label>
<input type="text" id="fname" accesskey="f">
</div>
<div>
<label for="lname"><span class="shotcutkey">L</span>ast Name
</label>
<input type="text" id="lname" accesskey="l">
</div>
<div>
<label for="postal_code"><span class="shotcutkey">P</span>ostal Code
</label>
<input type="text" id="postal_code" accesskey="p">
</div>
<div>
<label for="street">Str<span class="shotcutkey">e</span>et
</label>
<input type="text" id="street" accesskey="e">
</div>
<div>
<label for="city"><span class="shotcutkey">C</span>ity
</label>
<input type="text" id="city" accesskey="c">
</div>
<div>
<label for="state"><span class="shotcutkey">S</span>tate
</label>
<select id="state" accesskey="s">
<option value=""> </option>
<option value="MG">MG</option>
<option value="RJ">RJ</option>
<option value="SC">SC</option>
<option value="SP">SP</option>
</select>
</div>
<div>
<label for="phonenumber">Phone <span class="shotcutkey">N</span>umber
</label>
<span><input type="text" id="ddd" placeholder="xx" accesskey="d"></span>
<input type="tel" id="phonenumber" value="" placeholder="xxxxx-xxxx" accesskey="n">
</div>
<input type="submit" id="submit" value="Submit">
</form>
</body>
</html>