-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (85 loc) · 3.68 KB
/
index.html
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
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Davie's Burgers Order Form</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<section id="content">
<img src="images/logo-transparent.png" alt="Davie's Burger Logo">
<hr>
<form action="" method="post">
<h1>Create Your Burger</h1>
<section class="Protein">
<label for="protein">What type of protein would you like?</label>
<input type="text" name="protein" id="protein" maxlength="14">
<hr>
</section>
<section class="Patties">
<label for="patties">How many patties would you like?</label>
<input type="number" name="patties" id="patties" step="1" min="1" max="3">
<hr>
</section>
<section class="Cooking">
<label for="cooking">How do you want your patty cooked?</label>
<br>
<span>Rare</span>
<input type="range" name="cooking" id="cooking" step="0.5" min="0" max="5">
<span>Well-Done</span>
<hr>
</section>
<section class="Toppings">
<span>What toppings would you like?</span>
<br>
<input type="checkbox" name="toppings" id="lettuce" value="Lettuce">
<label for="lettuce">Lettuce</label>
<input type="checkbox" name="toppings" id="tomato" value="Tomato">
<label for="tomato">Tomato</label>
<input type="checkbox" name="toppings" id="onion" value="Onion">
<label for="onion">Onion</label>
<hr>
</section>
<section class="Cheese">
<span>Would you like to add cheese?</span>
<br>
<input type="radio" name="cheese" id="yes" value="yes">
<label for="yes">Yes</label>
<input type="radio" name="cheese" id="no" value="no">
<label for="no">No</label>
<hr>
</section>
<section class="Buns">
<label for="bun">What type of bun would you like?</label>
<select name="bun" id="bun">
<option value="sesame">Sesame</option>
<option value="cinnamon">Cinnamon</option>
<option value="butter-bread">Butter-bread</option>
</select>
<hr>
</section>
<section class="Sauce">
<label for="sauce">What type of Sauce would you like?</label>
<input list="sauces" name="sauce" id="sauce">
<datalist id="sauces">
<option value="Magarita"></option>
<option value="BBQ"></option>
<option value="lemon pepper"></option>
<option value="garlic"></option>
</datalist>
<hr>
</section>
<section class="Other">
<label for="others">Anything else you want to add?</label>
<br>
<textarea name="other" id="others" rows="3" cols="15"></textarea>
</section>
<input type="submit" value="Submit" id="submit-button">
</form>
</section>
</body>
</html>