-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml
42 lines (34 loc) · 1.46 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head> <!-- Start of the page head -->
<meta charset="utf-8" />
<!--
This is an HTML comment
You can write text in a comment and the content won't be visible in the page
-->
<title>J.S. animal site</title>
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- Import the webpage's javascript file -->
<script src="/script.js" defer></script>
</head>
<body> <!-- This is the body of the page (we will learn soon) -->
<h1>All about kiwi birds</h1>
<img alt="Photo of a kiwi bird" src="https://cdn.glitch.global/2cc4d04f-c28c-43be-a75f-e957848345f7/kiwi_bird.jpeg?v=1656300171197" height="50%" width="50%" border="5px">
<!-- you can set the element's style inline -->
<div class="info">
<p> Here are some facts! </p>
<ol>
<li>Twenty percent of the kiwi population is under management</li>
<li>Ninety five percent of kiwis die before reaching breeding age in areas that are not managed</li>
<li>About one thousand four hundred kiwi die every year, a 2 percent decline!</li>
<li>Kiwi birds are omnivores, so they eat a little od everything!</li>
<li>Kiwi have feathers like hair, perfect camouflage</li>
<br> <!-- You can nest elements in elements -->
<ul>
<li><a href="https://www.savethekiwi.nz/about-kiwi/kiwi-facts/">Source</a></li>
</ul>
</ol>
</div>
</body>
</html>