-
Notifications
You must be signed in to change notification settings - Fork 2
/
Day 3.html
60 lines (56 loc) · 1.65 KB
/
Day 3.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
<html>
<head>
<title>
Day 3
</title>
<style>
table {
border: 5px solid black;
}
div {
background-color: black;
}
</style>
</head>
<body>
<h1>Dog</h1>
<div>
<a href="#"><img src="https://picsum.photos/id/237/200/300" width="100" height="150" alt="image for dog"></a>
<a href="./Day 1.html"><img src="https://picsum.photos/id/237/200/300" width="100" height="150"
alt="image for dog"></a>
</div>
<h3>Characteristics</h3>
<ul type="circle">
<li>Loyal</li>
<li>Fluffy</li>
</ul>
<table align="center">
<tr>
<th>Firstname</th>
<th colspan="2">lastname</th>
</tr>
<tr>
<td class="green">Maple</td>
<td class="green">Bhatia</td>
</tr>
<tr>
<td>Bruno</td>
</tr>
<tr>
<td class="green">Tyson</td>
<td class="green">Sharma</td>
</tr>
</table>
<br>
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
<label for="Male"><input id="male" type="radio" value="male" name="gender">Male</label>
<label for="Female"><input class="green" type="radio" value="female" name="gender">Female</label><br>
<label for="lazy"><input type="checkbox" value="lazy">Lazy</label>
<label for="loving"><input type="checkbox" value="loving" checked>Loving</label><br>
<input type="text" placeholder="URL of Dog's Picture" required><br>
<button type="submit">Submit</button>
<span>HI
HELLO</span>
</form>
</body>
</html>