-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1.html
50 lines (50 loc) · 2.51 KB
/
index1.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
<!DOCTYPE html>
<html>
<head>
<title>Signos e Sorte</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="assets/css/style1.css">
</head>
<body>
<div class="header">Site dos Signos</div>
<div class="container">
<div class="verify-container">
<h2 style="color: #2fda29; font-weight: bold;">Não sabe qual é seu signo?</h2>
<p>Informe sua data de nascimento:</p>
<input type="date" id="birthdate">
<button class="verify-button" onclick="verifySign()">Verificar</button>
<br></br>
<div class="balloon text-center" id="signBalloon"></div>
</div>
<div class="signs-container">
<a href="aries.html" class="sidebar-link" style="background-color: #e74c3c;">Áries</a>
<a href="touro.html" class="sidebar-link" style="background-color: #f39c12;">Touro</a>
<a href="Gemeos.html" class="sidebar-link" style="background-color: #d35400;">Gêmeos</a>
<a href="Cancer.html" class="sidebar-link" style="background-color: #c0392b;">Câncer</a>
<a href="Leo.html" class="sidebar-link" style="background-color: #27ae60;">Leão</a>
<a href="virgem.html" class="sidebar-link" style="background-color: #2ecc71;">Virgem</a>
<a href="Libra.html" class="sidebar-link" style="background-color: #3498db;">Libra</a>
<a href="Escorpiao.html" class="sidebar-link" style="background-color: #9b59b6;">Escorpião</a>
<a href="Sagitario.html" class="sidebar-link" style="background-color: #8e44ad;">Sagitário</a>
<a href="Capricornio.html" class="sidebar-link" style="background-color: #1abc9c;">Capricórnio</a>
<a href="Aquario.html" class="sidebar-link" style="background-color: #16a085;">Aquário</a>
<a href="Peixes.html" class="sidebar-link" style="background-color: #3498db;">Peixes</a>
</div>
<br></br>
<div class="buttons-horizontal">
<a href="combinacao.html" class="combination-button sidebar-link horizontal-button">Jogo das Combinações</a>
</div>
</div>
<footer>
<footer class="footer">
<div class="footer-links">
<a href="https://www.linkedin.com/in/gleisonamorim/" target="_blank">Me conheça no LinkedIn</a>
<span class="separator">|</span>
<a href="https://drive.google.com/file/d/1zgNLnZVdlBxYTsSKZuJH926G-nWGuZbC/view?usp=drive_link" target="_blank" rel="noopener noreferrer">Baixar App</a>
</div>
</footer>
<script src="assets/js/index1script.js"></script>
<script src="/_vercel/insights/script.js"></script>
</body>
</html>