-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 1.79 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 1.79 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<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" />
<title>Projeto de sprint: APOD</title>
<link rel="stylesheet" href="./css/apod.css" />
</head>
<body>
<header>
<img src="img/nasa.png" id="nasa" />
<h1>Foto Astronômica Do Dia</h1>
</header>
<p id="sobre">
<a href="https://apod.nasa.gov/apod/archivepix.html" target="_blank">Descubra o cosmos! </a>
A cada dia, uma imagem ou fotografia diferente de nosso fascinante universo é apresentada, junto com uma breve explicação escrita por um astrônomo profissional.
</p>
<p id="escolha">
Por favor, escolha uma data a partir de 16 de junho de 1995 e viaje no tempo para uma imagem ou vídeo!
</p>
<main>
<div id="entrada">
<input id="data" type="date" min="1995-06-16" />
</div>
<div id="botao">
<button type="submit" id="btnSubmit" value="enviar">Confirmar!</button>
</div>
<div id="infoResultado">
<h1 id="titulo"></h1>
<div id="fotoOuVideo"></div>
<p id="explicacao"></p>
</div>
</main>
<footer>
Site feito para fins educacionais por
<a href="https://github.com/mmcrisx" target="_blank">Mariana Cristina Dias dos Santos</a>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="js/apod.js"></script>
</body>
</html>