-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimalsHumans.html
67 lines (63 loc) · 1.62 KB
/
animalsHumans.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Introduction to CSS - backgrounds, background image, tables">
<meta name="keywords" content="HTML, CSS, learning">
<meta name="author" content="Helena Wee">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animals and their humans</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>🐾 Animals and their humans 🐾</h1>
</header>
<main>
<table>
<thead>
<tr>
<th>Animal's name</th>
<th>Animal type</th>
<th>Human's name</th>
</tr>
</thead>
<tbody>
<tr>
<td>Huan</td>
<td class="animalEmoji">🐢</td>
<td>Mei</td>
</tr>
<tr>
<td>Bubbles</td>
<td class="animalEmoji">🐟</td>
<td>Peter</td>
</tr>
<tr>
<td>Tanir</td>
<td class="animalEmoji">🐹</td>
<td>Preeti</td>
</tr>
<tr>
<td>Pickle</td>
<td class="animalEmoji">🐇</td>
<td>Talula</td>
</tr>
<tr>
<td>Dinah</td>
<td class="animalEmoji">🐈</td>
<td>Alice</td>
</tr>
<tr>
<td>Daisy</td>
<td class="animalEmoji">🐕</td>
<td>John</td>
</tr>
</tbody>
</table>
</main>
<footer>
<p id="footerText">© 2024 Helena Wee</p>
</footer>
</body>
</html>