-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (36 loc) · 1.52 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
<!-- Developed by Rahul Karda-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Pick a date to get the NASA picture of the day for that date! Built using NASA API (https://api.nasa.gov/)">
<meta name="keywords" content="picture of the day, nasa, apod, api">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/4fc31833c8.js" crossorigin="anonymous"></script>
<title>APOD</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Astronomy Picture of the Day</h1>
<h2 id="date">Which date?</h2>
<input type="date" name="date" value="">
<button type="button" name="button" id="getPic">Get Picture</button>
<div class="picture">
<h2 id="name">Name</h2>
<img src="" alt="fetching picture...">
<iframe src="" frameborder="0"></iframe>
</div>
<div class="description">
<h3 id="descHead">Description</h3>
<h3 id="desc">
Astronomy Picture of the Day is provided by NASA and Michigan Technological University. "Each day a different image or photograph of our universe is featured, along with a brief explanation written by a professional astronomer".
</h3>
</div>
<footer>
<a href="https://github.com/rahulkarda/NASA-APOD"><i class="fa-brands fa-github"></i></a></i>
<a href="https://rahulkarda.netlify.app" id="dev">Developed by Rahul Karda</a>
</footer>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>