-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (52 loc) · 2.19 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
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="keywords" content="one, two, three">
<title>NASA PICTURE OF THE DAY</title>
<!-- favicon -->
<link rel="shortcut icon" href="https://img.icons8.com/ios-glyphs/30/737373/space.png" type="image/x-icon">
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<!-- Toastify -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<!-- Toastifyjs -->
<script type="text/javascript" defer src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<!-- cleave -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/cleave.js/1.6.0/cleave.min.js" integrity="sha512-KaIyHb30iXTXfGyI9cyKFUIRSSuekJt6/vqXtyQKhQP6ozZEGY8nOtRS6fExqE4+RbYHus2yGyYg1BrqxzV6YA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- javascript -->
<script type="text/javascript" defer src="js/main.js"></script>
</head>
<body>
<header>
<h1>Nasa Picture Of The Day</h1>
<div class="inputControl">
<input id="dateInput" placeholder="yyyy-mm-dd" type="text">
<input class="button" id="submitDate" type="button" value="Get Picture">
</div>
</header>
<section id="main">
<div id="imageContainer" >
<img id="imageOTD" src="" alt="Nasa Image of the date">
<iframe id="videoOTD" src=""> </iframe>
<div id="imageAbout" >
<h3 id="imageOTDTitle" ></h3>
<span id="imageOTDdate"></span>
<p id="imageOTDSummary" ></p>
</div>
</div>
</section>
<section id="secondary" >
<h2>Previous Images</h2>
<ul id="prevImagesList">
</ul>
<input class="button" id="clearPrevImages" type="button" value="Clear Previous Records">
</section>
<footer>
<p> Nasa Picture Of The Day website coded by Mohid Alam / Alamicrodev. Source: <a href="https://github.com/Alamicrodev/Nasa_PictureOfTheDay-Site">Github Repo</a> </p>
</footer>
</body>
</html>