-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (60 loc) · 2.3 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
65
<!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">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/planetas.png" >
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script defer src="js/script.js"></script>
<title>Enterprise</title>
</head>
<body>
<!-- Inicio da header -->
<header class="header">
<nav>
<ul class="menu">
<li><a href="">Home</a></li>
<li><a href="">Apod</a></li>
<li><a href="">Nasa</a></li>
</ul>
</nav>
</header>
<!-- Fim da header -->
<!-- Inicio da first-section -->
<section class="first-section">
<div class="container" >
<h1>Enterprise</h1>
<div class="content">
<p>O que você acha da possibilidade de ver fotos do universos tiradas em uma data especial pra você?
Como seu aniversário, casamento ou nascimento de um filho(a).
</p>
<p> Atráves da Enterprise essa possibilidade se torna real, Os resultados podem ser constelações,
nebulosas, diferentes astros e corpos celestes</p>
</div>
<a href="#section-form"> <button class="button-section">Quero descobrir</button></a>
</div>
</section>
<!-- Fim da first-section -->
<!-- Inicio da section-main -->
<section class="section-main" id="section-form">
<div class="container-form">
<h3>Escolha uma data:</h3>
<form class="form">
<input name="date" type="date" class="input-date" id="date">
<button class="button-form" id="btn-form">Ver</button>
</form>
</div>
<div class="div-info">
<div class="container-info">
<h2 class="title" id="title"></h2>
<iframe class="iframa-video" id="video" src=""></iframe>
<img class="image" id="image" src="" alt="">
<p class="text" id="text"></p>
</div>
</div>
</section>
<!-- Fim da section-main -->
</body>
</html>