-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (54 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Your description goes here">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>APOD</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=Lora:wght@600;900&family=Manrope:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a href="#" class="logo">Astronomy Picture of the Day</a>
</header>
<main class="center">
<div class="bg-img-box">
<span>Don't like this background?</span>
<h5>Change Background Image</h5>
<ul>
<li><img class="bg-img1" src="images/SC-APOD-bg1.webp" alt=""></li>
<li><img class="bg-img2" src="images/SC-APOD-bg2.webp" alt=""></li>
<li><img class="bg-img3" src="images/SC-APOD-bg3.webp" alt=""></li>
<li><img class="bg-img4" src="images/SC-APOD-bg4.webp" alt=""></li>
<li><img class="bg-img5" src="images/SC-APOD-bg5.webp" alt=""></li>
</ul>
</div>
<section class="apod-parent">
<div class="after-click">
</div>
</section>
<section class="before-click center">
<a href="#" class="today get-img-btn" >Get Today's APOD</a>
<div id="another-choice" class="another-date">
<p>View media for another day</p>
<label for="date">
<input type="date" id="date" data-placeholder="MM-DD-YYYY">
<a href="#" class="another-day get-img-btn">Get Media</a>
</label>
</div>
</section>
</main>
<footer>
<span>
created by <a href="https://danielezekiel.me">Lipkis</a>
</span>
</footer>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>