generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (66 loc) · 2.33 KB
/
index.html
File metadata and controls
68 lines (66 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Retails Store Order Form</title>
<meta name="description" content="The form collects client details about their purchase, item characteristics." />
</head>
<body>
<header>
<h1>T-Shirt Order Form</h1>
</header>
<main>
<div class="box-form">
<form>
<fieldset class="user-details">
<legend><strong>Customer Member Details</strong></legend>
<div class="form-control">
<label for="username">User Name</label>
<input type="text" id="username" name="username" placeholder="Username" minlength="2" required>
</div>
<div class="form-control">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="example@mail.com" required>
</div>
</fieldset>
<fieldset class="form-color">
<legend><strong>Please select the color for your order:</strong></legend>
<ul>
<li>
<label for="red">Red</label>
<input type="radio" id="red" name="color" value="red" required />
</li>
<li>
<label for="yellow">Yellow</label>
<input type="radio" id="yellow" name="color" value="yellow" />
</li>
<li>
<label for="blue">Blue</label>
<input type="radio" id="blue" name="color" value="blue" />
</li>
</ul>
</fieldset>
<fieldset>
<legend><strong>Please select your size for your order:</strong></legend>
<label for="size-selection">size:</label>
<select name="size" id="size-selection" required>
<option value="" disabled selected>Size?</option>
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="XL">XL</option>
<option value="XXL">XXL</option>
</select>
</fieldset>
<button type="submit">Submit Order </button>
</form>
</div>
</main>
<footer>
<p>© Karla Grajales</p>
</footer>
</body>
</html>