-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapod.html
32 lines (25 loc) · 1.29 KB
/
apod.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="assets/css/apod.css">
<title>Astronomy Dashboard</title>
</head>
<body class="bg-slate-400/50">
<main class="grid place-items-center text-center w-screen h-screen">
<button type="button" class="lg:w-40 bg-gray-700 hover:bg-gray-800 m-2 rounded text-white m-2 " id="goBack">
Back to Homepage
</button>
<p class="text-4xl text-cyan-700 underline decoration-double m-5">Astronomy Photo of the Day via <a href="https://apod.nasa.gov/apod/astropix.html">NASA</a></p>
<p class="text-center text-bold text-2xl text-cyan-700 " id="apodCaption"></p>
<img class="object-center m-10 container rounded border-gray-200 w-1/2" id="apodPhoto" />
<p class="text-center text-bold text-2xl text-cyan-700 " id="apodExplanation"></p>
</main>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
<script src="assets/js/apod.js"></script>
</html>