-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (49 loc) · 1.46 KB
/
index.html
File metadata and controls
50 lines (49 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<title>Spacestagram</title>
</head>
<body>
<div class="main">
<nav class="nav__bar">
<a href="#" class="nav__brand">
<i class="fas fa-space-shuttle"></i>
</a>
<h2 class="nav__title">Spacestagram</h2>
<ul class="nav__card">
<li class="nav__item">Brought to you by NASA's image API</li>
<li class="nav__item">
<a
target="_blank"
class="nav__link"
href="https://github.com/tracemycodes/NASA-space-API-project"
>
view repo
</a>
</li>
</ul>
</nav>
<div class="space__div"></div>
<div id="profile__data"></div>
<footer class="footer">
<p>
Coded by <a href="https://github.com/tracemycodes">trace-it</a> ©
2022
</p>
</footer>
</div>
<script src="./nasa.js"></script>
<script src="./ui.js"></script>
<script src="./app.js"></script>
</body>
</html>