-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (115 loc) · 4.72 KB
/
Copy pathindex.html
File metadata and controls
121 lines (115 loc) · 4.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="./css/style.css" />
<title>NASA API</title>
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="#home" class="navbar__item item1">Home</a>
<a href="#aboutmission" class="navbar__item item2">About Mission</a>
<a href="#newss" class="navbar__item item3">News</a>
</nav>
<div class="title" id="home">
<p class="title__sub">get closer to space</p>
<h1 class="title__main">space explorer</h1>
<p class="title__sub2">code and design by jayram pansare</p>
</div>
</header>
<main class="main">
<h2 class="heading-primary" id="aboutmission">About the Mission</h2>
<div class="container">
<div class="container__item item--1">
<img src="./img/img-1.jpg" alt="image-1" class="image image--1" />
</div>
<div class="container__item item--2">
<img src="./img/img-22.jpg" alt="image-2" class="image image--2" />
</div>
<div class="container__item item--3">
<h3>
<span class="main--txt">Explore:</span><br />
<span class="sub--txt"
>Explore space through maps pulled from NASA's api.</span
>
</h3>
</div>
<div class="container__item item--4">
<h3>
<span class="main--txt">Browse:</span><br />
<span class="sub--txt"
>Browse through exciting layers and learn more about how NASA
collects data.</span
>
</h3>
</div>
<div class="container__item item--5">
<h3>
<span class="main--txt">Interact:</span><br />
<span class="sub--txt"
>Interact with view layers of a map's surface.</span
>
</h3>
<a href="https://api.nasa.gov/" class="nasa--api"
target="_blank">Learn about nasa's api
<span><img class="icon--1" src="./icon/saturn.svg" alt="" /></span
></a>
</div>
<div class="container__item item--6">
<img src="./img/img-33.jpg" alt="image-3" class="image image--3" />
</div>
</div>
<h2 class="heading-primary" id="newss">News</h2>
<section class="nasanews">
<div class="newscard">
<header class="newsheader"></header>
<div class="titlecard">
<p class="title__sub3 ">news of the day |</p>
<p class="title__sub3 ntitle"></p>
<p class="title__sub3 ndate">code and design by jayram pansare</p>
</div>
<div class="contentcard">
<p class="news">jafhsdhj</p>
<img class="hdimage" alt="nasa provided image"></img>
<p class="copyrights title__sub5"></p>
</div>
</div>
</section>
</main>
<footer class="footer">
<!-- <h2 class="heading-primary"></h2> -->
<div class="containerfooter">
<div class="card__1 card1">
<p class="title__sub4">looking to hire?</p>
<p class="sub--txt3">I'm always looking for a unique project to challenge me. Take a look at some of my work.</p>
<a href="#" class="lnk" target="_blank">Learn more →</a>
</div>
<div class="card__2 card1">
<p class="title__sub4">NASA's API List</p>
<p class="sub--txt3">NASA encourages developers to leverage their apis and use them in their applications!</p>
<a href="https://api.nasa.gov/" class="lnk" target="_blank">Learn more →</a>
</div>
<div class="card__3 card1">
<p class="title__sub4">ESRI API</p>
<p class="sub--txt3">Official page for the rendering api I used to map out NASA's WMTS layers.</p>
<a href="https://www.esri.com/en-us/home" class="lnk" target="_blank">Learn more →</a>
</div>
<div class="card__4 card1">
<p class="title__sub4">NASA'S OPEN SOURCE PAGE</p>
<p class="sub--txt3">Want to contribute to the wonders of space exploration?</p>
<a href="https://www.nasa.gov/open/open-source-development.html" class="lnk" target="_blank">Learn more →</a>
</div>
</div>
<h4 class="cpright">©2021 Design by Jayram Pansare, Data provided by NASA</h4>
</footer>
<script src="./app.js"></script>
</body>
</html>