-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathforms.html
More file actions
42 lines (28 loc) · 1.04 KB
/
forms.html
File metadata and controls
42 lines (28 loc) · 1.04 KB
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Forms for Accessibility and Web Development, Accessible Future Workshop </title>
</head>
<body>
<form>
<label for="firstname">First Name</label>
<input type="text" name="firstname">
<label for="lastname">Last Name</label>
<input type="text" name="lastname">
<label for="bio">Biography</label>
<textarea name="bio" rows="5"></textarea>
<label for="email">Email</label>
<input type="email" placeholder="jane@example.com">
<label for="telephone">Phone Number</label>
<input type="tel" placeholder="555-555-5555">
<input type="submit" value="Save Form">
</form>
<hr>
<form role="search">
<label for="search">Search</label>
<input type="search" placeholder="lorem, ipsum, dolor">
<input type="submit" value="Submit Search">
</form>
</body>
</html>