-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
58 lines (50 loc) · 1.83 KB
/
Copy pathform.html
File metadata and controls
58 lines (50 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Form</title>
<link rel="stylesheet" href="css/form_style.css">
<link rel="icon" type="image/x-icon" href="images/meerkat-favi.png">
</head>
<body>
<header>
<h1 style="margin-top: auto;">Form</h1>
</header>
<img src="images/sandwich.jpg" id="picture"> <br>
<main>
<form action="/submit" method="POST">
<!--Sandwich name entry-->
<label for="name">Sandwich Name: </label>
<input type="text" id="name" name="name"> <br>
<!--Bread Menu-->
<label for="bread">Bread: </label> <br>
<div id ="bread-menu">
<div class="bread-option">
<label>White</label>
<input type="radio" name="White">
</div><br>
</div>
<!--Protein Dropdown-->
<label>Choose Your Protein: </label>
<select id="protein" name="protein">
<option value="ham">Ham</option>
<option value="bacon">Bacon</option>
<option value="turkey">Turkey</option>
<option value="pastrami">Pastrami</option>
</select> <br>
<!--Submit button-->
<input type="submit" value="Submit">
</form> <br>
</main>
<!--Back home link-->
<footer>
<a href="index.html">back to home</a>
</footer>
<!-- Grid Test Code -->
<div id="grid">
<p class="grid-item">1</p>
<p class="grid-item">2</p>
<p class="grid-item">3</p>
</div>
</body>
</html>