This repository was archived by the owner on Oct 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (76 loc) · 2.31 KB
/
index.html
File metadata and controls
78 lines (76 loc) · 2.31 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
<!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>
<header>
<h1>Product Pick</h1>
</header>
<main>
<form>
<p id="description">Chosee your clothes</p>
<form id="survey-form">
<div class="form-control">
<label id="name-label">Name:
<input id="name" type="text" placeholder="enter your name" required />
</label>
</div>
<div class="form-control">
<label id="email-label">Email:
<input id="email" type="email" placeholder="your email adress" required />
</label>
</div>
<form id="survey-form"></form>
<p>What is your favorite color for T-Shirt?</p>
<div class="form-control">
<label class="blue">Blue
<input type="radio" name="redio-group" value="Blue" />
</label>
<label class="yellow">Yellow
<input type="radio" name="redio-group" value="Yellow" />
</label>
<label class="orange">Orange
<input type="radio" name="redio-group" value="Orange" />
</label>
</div>
<!-- write your html here-->
<!-- try writing out the requirements first-->
<p>What size would you like?</p>
<div class="form-size">
<label>XS
<input type="radio" name="color" value="Blue" />
</label>
<label>S
<input type="radio" name="color" value="Yellow" />
</label>
<label>M
<input type="radio" name="color" value="Orange" />
</label>
<label>L
<input type="radio" name="color" value="Yellow" />
</label>
<label>XL
<input type="radio" name="color" value="Orange" />
</label>
<label>XXL
<input type="radio" name="color" value="Orange" />
</label>
</div>
<div class="date">
<label id="date">Email:
<input id="date" type="date" placeholder="delivery date" required value="2023-01-24" min="2023-01-25" max="2023-02-09"/>
</label>
</div>
</form>
</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>
</footer>
</body>
</html>