-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (81 loc) · 2.92 KB
/
index.html
File metadata and controls
94 lines (81 loc) · 2.92 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
<!DOCTYPE HTML>
<!--
Multiverse by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>NASA Images</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="https://haileymartin.netlify.app/"><strong>NASA Images</strong> by Hailey Martin</a></h1>
<nav>
<ul>
<li><a href="#footer" class="icon solid fa-info-circle">About</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
<h1>NASA Image Search</h1>
<input type="text"
placeholder="Search"
class="image-input">
<button type="button"
name="button"
class="image-search">Get Picture
</button>
<section class="gallery"></section>
</div>
<!-- Footer -->
<footer id="footer" class="panel">
<div class="inner split">
<div>
<section>
<h2>NASA Images Library</h2>
<p>API accesses NASA Image and Video Library to display images.</p>
</section>
<section>
<h2>Follow me on ...</h2>
<ul class="icons">
<li><a href="https://x.com/Hailo7ts" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/Hailo7ts" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/hailey-martin-co/" class="icon brands fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
</ul>
</section>
<p class="copyright">
© Hailey Martin. Design: <a href="http://html5up.net">HTML5 UP</a>.
</p>
</div>
<div>
<section>
<h2>Find NASA API Documentation <a href="https://api.nasa.gov/">here</a></h2>
<p>NASA API has the objective of making NASA data accessible to application
devs providing a catalog of user-friendly APIs. Some of the APIs
available include Astronomy Picture of the Day, Near Earth Object
Web Service, Space Weather Database Of Notifications, Knowledge,
Information, etc.
</p>
</section>
</div>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>