-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 2.12 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
<!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">
<title>Compatibilidad de Pareja</title>
<link rel="icon" href="./IMG/corazon.ico">
<link rel="stylesheet" href="CSS/normalize.css">
<link rel="stylesheet" href="CSS/styles.css">
<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=Oswald:wght@200;400;600&family=Outfit:wght@400;700&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/f8942f04f9.js"></script>
</head>
<body>
<header class="header">
<div class="header__nav">
<div class="header__nav-iconos">
<a href="https://citas-en-pareja.netlify.app/"><i class="fa-solid fa-heart"></i></a>
</div>
<h1 class="header__nav-titulo">Compatibilidad</h1>
</div>
</header>
<section class="section">
<div class="resultado">
<h2 class="resultado-texto"></h2>
<h3 class="resultado-nombres"></h3>
</div>
<form id="calcular-nombres">
<h2>Ingrese dos nombres</h2>
<input type="text" id="nombre1" placeholder="Nombre">
<input type="text" id="nombre2" placeholder="Nombre">
<div class="botones">
<a id="resetearBtn"><i class="fa-solid fa-trash-can"></i></a>
<button id="calcularBtn" type="submit">Calcular Compatibilidad</button>
</div>
</form>
</section>
<footer class="footer">
<div class="footer__nav">
<h3 class="footer__nav-version">v0.13</h3>
<h2 class="footer__nav-titulo">Maximiliano Kazanski
</h2>
<div class="footer__nav-iconos">
<a href="https://github.com/Wokcito" target="blank"><i class="fa-brands fa-github"></i></a>
</div>
</div>
</footer>
<script src="./JS/app.js"></script>
</body>
</html>