-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
44 lines (43 loc) · 1.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>International Space Station APIs</title>
</head>
<body>
<header>
<h1>International Space Station APIs</h1>
<a
href="https://github.com/corquaid/international-space-station-APIs#readme"
target="_blank"
>
<img src="assets/github-mark-white.svg" alt="GitHub Icon" />
</a>
</header>
<nav>
<ul>
<li>
<a
href="https://corquaid.github.io/international-space-station-APIs/JSON/people-in-space.json"
>People In Space (JSON)</a
>
</li>
<li>
<a
href="https://corquaid.github.io/international-space-station-APIs/JSON/iss-docked-spacecraft.json"
>Spacecraft at the ISS</a
>
</li>
</ul>
</nav>
<footer>
<p>© 2021-<span id="currentYear"></span> corquaid</p>
</footer>
</body>
</html>
<script>
var currentYear = new Date().getFullYear()
document.getElementById('currentYear').innerText = currentYear
</script>