-
-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (47 loc) · 1.39 KB
/
index.html
File metadata and controls
59 lines (47 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>T-Shirt Order</title>
</head>
<body>
<main>
<form id="tshirtForm">
<label>
Full Name:
<input type="text" id="name" name="name" required>
</label>
<br><br>
<label>
Email:
<input type="email" id="email" name="email" required>
</label>
<br><br>
<label>
T-shirt Colour:
<select id="colour" name="colour" required>
<option value="" disabled selected>Select a colour</option>
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="black">Black</option>
</select>
</label>
<br><br>
<fieldset>
<legend>T-shirt Size</legend>
<label><input type="radio" name="size" value="XS" required> XS</label><br><br>
<label><input type="radio" name="size" value="S"> S</label><br><br>
<label><input type="radio" name="size" value="M"> M</label><br><br>
<label><input type="radio" name="size" value="L"> L</label><br><br>
<label><input type="radio" name="size" value="XL"> XL</label><br><br>
<label><input type="radio" name="size" value="XXL"> XXL</label>
</fieldset>
<br>
<button type="submit">Submit</button>
</form>
</main>
<footer>
<p>By Shuheda Begum</p>
</footer>
</body>
</html>