-
-
Notifications
You must be signed in to change notification settings - Fork 541
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (78 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
84 lines (78 loc) · 2.47 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My form exercise</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" >
</head>
<body>
<header>
<h1>Customer Confirmation Form </h1>
</header>
<main>
<form action="results.html" method="GET">
<div>
<label for="name">Customer Name:</label>
<input type="text" id="name" name="name" required placeholder="two non-space characters."/>
</div>
<div
<label for="email"> Email:</label>
<input type="email" id="email" name="email" required placeholder="@gmail.com" />
</div>
<div>
<label for="Size"> Size: </label>
<select id="size" name="size">
<option value="xsmall">xSmall</option>
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
<option value="xlarge">xLarge</option>
<option value="xxlarge">xxLarge</option>
</select>
</div>
<div>
<label for="phone"> Phone Number:</label>
<input type="tel" id="phone" name="phone" required />
</div>
<div>
<label for="address"> Address: </label>
<input type="text" id="address" name="address" required />
</div>
<div>
<label for="color"> Color:</label>
<select id="color" name="color">
<option value="red">yellow</option>
<option value="blue">black</option>
<option value="green">Green</option>
</select>
</div>
<div>
Gender
</div>
<div>
<label for="gender">Male</label>
<input type="radio" for="gender" id="male"></input>
</div>
<div>
<label for="gender">Female</label>
<input type="radio" for="gender" id="female"></input>
</div>
<div>
<label for="comments">Additional Comments:</label>
<textarea id="comments" name="comments"></textarea>
</div>
<div class="form-button">
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</div>
</form>
</main>
<footer>
<!-- ENICE MUTANDA-->
<p>ENICE MUTANDA</p>
</footer>
</body>
</html>