-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.53 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
<!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="shortcut icon" href="./assets/favicon.png">
<link rel="stylesheet" href="./style/reset.css">
<link rel="stylesheet" href="./style/style.css">
<title>NASA APOD</title>
</head>
<body>
<header>
<div class="tituloPrincipal">
<h1>NASA APOD</h1>
</div>
<div class="descricao">
<h2 id="explicacao">
<a href="https://apod.nasa.gov/apod/archivepix.html" class="linkDiscover">Discover the cosmos!</a> Each
day
a different image or photograph of our fascinating universe is featured,
along with a brief explanation written by a professional astronomer.
</h2>
</div>
</header>
<main>
<div class="containerInputs">
<div class="escolhaData">
<h3 id="tituloData">Choose a date:</h3>
</div>
<div class="inputs">
<input type="date" id="inputData">
<button id="botao">LET'S GO!</button>
</div>
</div>
</main>
<footer>
<h3>
2021 - <a href="https://www.linkedin.com/in/cafrangel/" id="linkFooter">Camila Rangel</a>
</h3>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="./index.js"></script>
</body>
</html>