-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpickles3.html
73 lines (62 loc) · 1.96 KB
/
pickles3.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
<!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.0">
<title>Document</title>
<link rel="stylesheet" href="styles1.css">
</head>
<body id="background-color">
<form class="center">
<input type="text" name="firstName" placeholder="First Name"><br>
<input type="text" name="lastName" placeholder="Last Name"><br><br>
<b>Pet Preference: </b><br>
<input type="radio" name="pet" placeholder="Cat">Cat<br>
<input type="radio" name="pet" placeholder="Dog">Dog<br>
<input type="radio" name="pet" placeholder="Other">Other<br>
<input type="radio" name="pet" placeholder="None">None<br><br>
<input type="submit" value="Submit">
</form><br><br>
<span>
<table id="center">
<thead>
<tr>
<th>Type of Cat</th>
<th>Weight</th>
<th>Color</th>
<th>Habitat</th>
<th>Known for</th>
</tr>
</thead>
<tbody>
<tr>
<td>cheetah</td>
<td>90-140lbs</td>
<td>golden w/ black spots</td>
<td>Africa/Asia</td>
<td>speed</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>panther</td>
<td>150-350lbs</td>
<td>brown w/ dark spots</td>
<td>Central America</td>
<td>apex predator</td>
</tr>
</tfoot>
</table><br><br>
</span>
<div>
<img src="Pickles3.JPG"
width = "400"
height= "300" id="image"/><br>
</div><br><br>
<div class="center">
<a href="pickles.html" class="hov"> Page 1 </a><br>
<a href="pickles2.html" class="hov"> Page 2 </a><br><br>
</div>
</body>
</html>