-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 2.17 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
<!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>Infinity Sky</title>
<!-- Arquivo CSS -->
<link rel="stylesheet" href="./css/style.css">
<!-- Script e Jquery -->
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="./js/script.js" defer></script>
<!-- Fonts do Google -->
<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=Hubballi&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1 class="titulo">Infinity Sky</h1>
<p class="credito">Projeto desenvolvido por <a class="linkedin"
href="https://www.linkedin.com/in/camillemonteiro/">Camille Monteiro</a></p>
<h2 class="subtitulo">Olha pro céu meu amô! 💫</h2>
<p class="explicacao">Essa é a minha versão do Astronomy Picture Of The Day (APoD) da Nasa.<br>
Utilizando a Api disponibilizada pela Nasa, é possível selecionar uma data abaixo (desde que seja a partir de 16/06/1995 - com excessão de 17, 18 e 19) e ver uma foto ou vídeo do céu do dia. <br>
Incrível né? O que você ta esperando? Olha pro céu meu amô! ✨ 🪐
</p>
</header>
<div class="pesquisa">
<input id="date" type="date" class="input" min="1995-06-16">
<button class="btn" type="button">Pesquisar!</button>
</div>
<div class="container">
<div class="divPai"></div>
<h3 class="titleNasa desativada"></h3>
<p class="textNasa desativada"></p>
<img class="imgNasa desativada" />
<iframe class="videoNasa desativada" src="" frameborder="0"></iframe>
</div>
</div>
</body>
</html>