-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweek7page2.html
More file actions
59 lines (53 loc) · 1.77 KB
/
week7page2.html
File metadata and controls
59 lines (53 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="week7styles.css">
</head>
<body>
<a href="week7HomePage.html">Home</a>
<a href="week7page2.html">Page 2</a>
<a href="week7page3.html">Page 3</a>
<h1>This is a table</h1>
<table class="boxes">
<tr>
<th>Noodle</th>
<th>Origin</th>
<th>Main Ingredients</th>
</tr>
<tr>
<td>Rice Noodles</td>
<td>Qin dynasty China</td>
<td>rice flour & water</td>
</tr>
<tr>
<td>Fettuccine</td>
<td>Renaissance Italy</td>
<td>flour & eggs</td>
</tr>
<tr>
<td>Udon</td>
<td>Japan</td>
<td>wheat flour</td>
</tr>
</table><br><br>
<h2 id="underline">Fill out this form</h2>
<form class="boxes">
<span>Enter your name</span><br>
<label for="first">First</label>
<input type="text" id="first" name="test">
<label for=last">Last</label>
<input type="text" id="last" name="last"><br>
<span>Are you human?</span><br>
<label for="yes">Yes</label>
<input type="radio" id="yes" name="yes">
<label for="no">No</label>
<input type="radio" id="no" name="no">
<label for="unsure">Unsure</label>
<input type="radio" id="unsure" name="unsure"><br>
<span>Choose a favorite color:</span>
<input type="color"><br>
<input type="submit">
</form><br><br>
</body>
</html>