forked from CodeYourFuture/Module-Onboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.8 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.8 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
<!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>
<fieldset style="font-size: 24px;">
<label for="name" >Name *</label>
<br />
<input type="text" name="name" placeholder="Name" id="name" minlength="2" required />
<br />
<label for="email">E-mail *</label>
<br />
<input type="email" name="email" placeholder="you@email.org" id="email" required />
<br />
<label for="colour">Colour *</label>
<select name="colour" id="colour" style="font-size: 24px;" required>
<option value="">Select a colour</option>
<option value="Black">Black</option>
<option value="Obsidian">Obsidian</option>
<option value="Noir">Noir</option>
</select>
<br></br>
<label for="size">Size *</label>
<select name="size" id="size" style="font-size: 24px;" required>
<option value="">Select a 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>
<br></br>
<button type="submit" style="font-size: 24px;">Submit</button>
</fieldset>
</form>
</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>
</footer>
</body>
</html>