-
-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 2.57 KB
/
index.html
File metadata and controls
84 lines (84 loc) · 2.57 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" />
</head>
<body>
<header>
<h1>Product Pick</h1>
</header>
<main>
<form>
<p>
<div>
<label for="name">NAME *</label> <!--write customer's name input-->
<input type="text" name="name" id="name" minlength="2" maxlength="20" required>
</div>
</p>
<p>
<div>
<label for="email">Email *</label> <!-- customer's email -->
<input type="email" name="email" id="email" required>
</div>
</p>
<div>
<fieldset>
<legend> T-shirt colour </legend> <!-- t-shirt colour -->
<ul>
<li>
<label for="red">Red</label><br>
<input type="radio" name="T-shirt colour" id="red">
</li>
<li>
<label for="green">Green</label><br>
<input type="radio" name="T-shirt colour" id="green">
</li>
<li>
<label for="yellow">Yellow</label><br>
<input type="radio" name="T-shirt colour" id="yellow">
</li>
</ul>
</fieldset>
<fieldset>
<legend>T-shirt size</legend> <!-- t-shirt size -->
<ol>
<li>
<label for="XS">XS</label><br>
<input type="radio" name="T-shirt size" id="XS">
</li>
<li>
<label for="S">S</label><br>
<input type="radio" name="T-shirt size" id="S">
</li>
<li>
<label for="M">M</label><br>
<input type="radio" name="T-shirt size" id="M">
</li>
<li>
<label for="L">L</label><br>
<input type="radio" name="T-shirt size" id="L">
</li>
<li>
<label for="XL">XL</label><br>
<input type="radio" name="T-shirt size" id="XL">
</li>
<li>
<label for="XXL">XXL</label><br>
<input type="radio" name="T-shirt size" id="XXL">
</li>
</ol>
</fieldset>
</div>
<button>Submit</button>
</form>
</main>
<footer>
Abdu Mussa
<h2>By HOMEWORK SOLUTION</h2>
</footer>
</body>
</html>