-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.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
<!DOCTYPE html>
<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 rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
<title>🔭Space Pictures</title>
</head>
<body>
<header>
<h1 id="title">Welcome on board</h1>
</header>
<main>
<div class="input-single">
<button type="button" id="getPic">Get Photo of this date: </button> <span>=> Enter Date:</span>
<input type="date" name="" id="date" value="">
</div>
<section class="output">
<h2 id="output-title"></h2>
<time datetime="" id="output-time"></time>
<img src="" alt="" id="output-image" loading="lazy">
<iframe width="560" height="315" id="output-vid" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<article id="explanation"></article>
<small id="copyright"></small>
</section>
</main>
</body>
</html>