forked from CodeYourFuture/HTML-CSS-Challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2.09 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 2.09 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
<!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="styles.css">
</head>
<body>
<header>
<h1>T-shirts</h1>
</header>
<main>
<div class="form-div">
<label id="name-label">Name</label><input type="text" id="name" name="name" placeholder="Enter your Name" required>
</div>
<div class="form-div">
<label id="email-label">Email</label><input type="email" id="email" name="email" placeholder="Enter your Email" required>
</div>
<div class="form-div">
<label id="label-radio">Choose color of T-shirt</label>
</div>
<div class="form-radio">
<label id="blue"><input type="radio" value="blue" name="choose">Blue</label>
</div>
<div class="form-radio">
<label id="green"><input type="radio" value="green" name="choose">Green</label>
</div>
<div class="form-radio">
<label id="pink"><input type="radio" value="pink" name="choose">Pink</label>
</div>
<div class="form-div">
<div class="form-div">
<label id="dropdown-label-feature">T-shirt size</label>
<select id="dropdown-feature" name="dropdown-feature">
<option value="">Select an option</option>
<option value="1">XS</option>
<option value="2">Small</option>
<option value="3">Medium</option>
<option value="4">Large</option>
<option value="5">XL</option>
<option value="6">XXL</option>
</select>
</div>
<div class="form-div">
<div class="form-div">
<label for="del-date">D.O.D.<span class="sr-only">(Date of Delivery)</span></label>
<input type="date" name="del-date" id="del-date" />
</div>
<div class="form-div">
<label>
<input id="submit" type="submit" value="submit">
</div>
</form>
</main>
<footer>
<h2>By Jan Softa</h2>
</footer>
</body>
</html>