-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<title>NASA APOD App</title>
<!-- external CSS link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="main" class="flex col">
<h1 class="flex">Discover APOD!</h1>
<h2 class="flex hidden">Name</h2>
<div class="flex col">
<img class="hidden" src="" alt="">
<iframe src="" frameborder="0" class="hidden"></iframe>
<input type="date" name="" value="" placeholder="Enter a date as yyyy-mm-dd">
<button type="button" name="button">Get Picture</button>
</div>
<h3 class="flex">Enter a date above to get the Astronomy Picture(or Video) of the Day from that date!</h3>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>