-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.08 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script async src="./script.js"></script>
<title>APOD</title>
</head>
<body>
<div style="display: flex; align-items: center; justify-content: center;">
<span class="material-icons md-48 moon">dark_mode</span>
<button class="switch" id="switch" onclick="DarkMode()">
<span class="slider round"></span>
</button>
</div>
<!-- header -->
<div>
<h1>NASA's Astronomy Picture of the Day</h1>
<h3 id="date"></h4>
<h2 id="title"></h1>
</div>
<!-- image -->
<div>
<a href="" target="_blank" id="link">
<img id="image" src="" alt="">
</a>
</div>
<!-- explanation -->
<div>
<h2>Explanation:</h3>
<p id="explanation"></p>
</div>
</body>
</html>