-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NASA APOD</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="https://s2.googleusercontent.com/s2/favicons?domain=www.nasa.gov">
<!-- Default Favicon -->
<!-- <link rel="icon" type="image/png" href="favicon.png"> -->
</head>
<body>
<!-- Loader -->
<div class="loader hidden">
<img src="rocket.svg" alt="Rocket Loading Animation">
</div>
<!-- Container -->
<div class="container">
<!-- Navigation -->
<div class="navigation-container">
<span class="background"></span>
<!-- Results Nav -->
<span class="navigation-items" id="resultsNav">
<h3 class="clickable" onclick="updateDOM('favorites')">Favorites</h3>
<h3> • </h3>
<h3 class="clickable" onclick="getNasaPictures()">Load More</h3>
</span>
<!-- Favorites Nav -->
<span class="navigation-items hidden" id="favoritesNav">
<h3 class="clickable" onclick="getNasaPictures()">Load More NASA Images</h3>
</span>
</div>
<!-- Images Container -->
<div class="images-container"></div>
</div>
<!-- Save Confirmation -->
<div class="save-confirmed" hidden>
<h1>ADDED!</h1>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>