-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NASA API Pictures</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="https://s2.googleusercontent.com/s2/favicons?domain=www.nasa.gov">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<!-- for CUSTOM 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>
<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="getNasaAPOD()">Load More</h3>
</span>
<!-- Fav Nav -->
<span class="navigation-items hidden" id="FavoritesNav">
<h3 class="clickable" onclick="getNasaAPOD()">Load More NASA Images</h3>
</span>
</div>
<!-- Images Container/Card -->
<div class="images-container">
<!--
<div class="card">
<a href="" title="View Image in Full" target="_blank">
<img src="" alt="NASA Picture of the Day" class="card-img-top">
</a>
<div class="card-body">
<h5 class="card-title">Title of Image</h5>
<p class="clickable">Add to Favorites
<i class="fa-regular fa-heart"></i>
</p>
<p class="card-text">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Voluptates neque minima recusandae consequuntur aperiam reiciendis rerum reprehenderit quasi nulla dicta. Deleniti maiores delectus possimus aspernatur natus velit perspiciatis vitae a?</p>
<small class="text-muted">
<strong>17-12-2022</strong>
<span>copyright info</span>
</small>
</div>
</div> -->
</div>
</div>
<!-- Fav Save Confirmation/Added -->
<div class="save-confirmed" hidden>
<h3>ADDED!</h3>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>