-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (54 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
75 lines (54 loc) · 1.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Native Birds in Singapore</title>
</head>
<body>
<header>
<h1>Why Singapore?</h1>
<p>
Singapore lies directly on the East Asian-Australasian Flyway,
serving as a vital refuelling stop for thousands of migratory birds.
</p>
<nav>
<a href="#types">Bird Types</a>
<a href="#gallery">Gallery</a>
</nav>
</header>
<main>
<section>
<h2 id="types">Main Types of Birds</h2>
<ol>
<li>Javan Myna</li>
<li>Yellow-Vented Bulbul</li>
<li>Asian Koel</li>
<li>Eurasian Tree Sparrow</li>
<li>Rock Dove</li>
</ol>
</section>
<section>
<h2 id="gallery">Gallery</h2>
<div>
<img src="javan-myna.jpg"
alt="Image of Javan Myna"
width="300">
<img src="yellow-vented-bulbul.jpg"
alt="Image of Yellow-Vented Bulbul"
width="300">
<img src="asian-koel.jpg"
alt="Image of Asian Koel"
width="300">
</div>
</section>
</main>
<footer>
<h2>Other Species</h2>
<p>If you wish to learn more:</p>
<a href="https://www.inaturalist.org/guides/1161">
iNaturalist Website
</a>
</footer>
</body>
</html>