-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatus.html
More file actions
76 lines (73 loc) · 2.33 KB
/
Copy pathstatus.html
File metadata and controls
76 lines (73 loc) · 2.33 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
76
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Status Tracker — EchoedWild</title>
<link rel="icon" href="favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Creepster&family=Nosifer&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script defer src="js/main.js"></script>
</head>
<body>
<div id="cursor-inner"></div>
<div id="cursor-outer"></div>
<header class="site-header">
<div class="container header-inner">
<a class="logo" href="index.html"><span class="echo">Echoed</span><span class="wild">Wild</span></a>
<nav class="nav" id="mainNav" aria-label="Main navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="animals.html">Animals</a></li>
<li><a class="active" href="status.html">Status Tracker</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<button class="hamburger" id="hamburger" aria-label="Toggle menu">☰</button>
</div>
</header>
<main class="container">
<h1>Status Tracker</h1>
<p>This table lists animals and their IUCN status plus estimated remaining populations (where available).</p>
<div class="status-table-wrap">
<table class="status-table">
<thead>
<tr>
<th>Animal</th>
<th>Status</th>
<th>Estimated Remaining</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sumatran Tiger</td>
<td class="status critical">Critically Endangered</td>
<td>~400</td>
</tr>
<tr>
<td>Giant Panda</td>
<td class="status vulnerable">Vulnerable</td>
<td>~1,864</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer class="site-footer">
<div class="container footer-inner">
<div class="footer-left">
<a class="logo small" href="index.html">EchoedWild</a>
<p>© <span id="year5"></span> EchoedWild</p>
</div>
<div class="footer-right">
<nav>
<ul>
<li><a href="tos.html">TOS</a></li>
<li><a href="privacy.html">Privacy</a></li>
</ul>
</nav>
</div>
</div>
</footer>
</body>
</html>