-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAustralian_Wildlife.html
41 lines (41 loc) · 1.12 KB
/
Australian_Wildlife.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Australian Wildlife</title>
<style>
table {
border-collapse: collapse;
width: 50%;
}
th, td {
text-align: left;
padding: 8px;
border: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<table>
<tr>
<th>Image</th>
<th>Description</th>
<th>More Info</th>
</tr>
<tr>
<td><img src="Koala.jpg" alt="Koala" width="100"></td>
<td>Koala - A native Australian marsupial.</td>
<td><a href="https://en.wikipedia.org/wiki/Koala">Wikipedia</a></td>
</tr>
<tr>
<td><img src="Kangaroo.jpg" alt="Kangaroo" width="100"></td>
<td>Kangaroo - A symbol of Australia.</td>
<td><a href="https://en.wikipedia.org/wiki/Kangaroo">Wikipedia</a></td>
</tr>
</table>
</body>
</html>