-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (78 loc) · 3.11 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Hábitos de Oro</title>
<link rel="stylesheet" href="Styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="about_us.html">Sobre Nosotros</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="search-bar-container">
<div class="search-bar">
<form method="GET">
<input type="text" placeholder="Buscar...">
<button type="submit">
<i class="fas fa-search"></i>
</button>
</form>
</div>
</div>
<h1>HÁBITOS <span>DE ORO</span></h1>
<h2>Bienvenidos</h2>
<p>Elige una categoria</p>
</section>
<section class="services">
<div class="service meditation">
<a href="meditation.html">
<img src="https://img.icons8.com/?size=100&id=r5vGFTruzVNp&format=png&color=000000" alt="Meditación">
<h3>Meditación</h3>
</a>
</div>
<div class="service yoga">
<a href="yoga.html">
<img src="https://img.icons8.com/?size=100&id=2327&format=png&color=000000" alt="Yoga">
<h3>Yoga</h3>
</a>
</div>
<div class="service exercise">
<a href="excersice.html">
<img src="https://img.icons8.com/?size=100&id=1784&format=png&color=000000" alt="Ejercicio">
<h3>Ejercicio</h3>
</a>
</div>
<div class="service feeding">
<a href="feeding.html">
<img src="https://img.icons8.com/?size=100&id=6899&format=png&color=000000" alt="Alimentación">
<h3>Alimentación</h3>
</a>
</div>
<div class="service nofap">
<a href="nofap.html">
<img src="https://img.icons8.com/?size=100&id=KLyXgIpg7AdE&format=png&color=000000" alt="NoFap">
<h3>NoFap</h3>
</a>
</div>
<div class="service wimhof">
<a href="wimhof.html">
<img src="https://img.icons8.com/?size=100&id=NZ6xJ1MPsUMH&format=png&color=000000" alt="Wim-Hof">
<h3>Método Wim Hof</h3>
</a>
</div>
</section>
<footer>
<p>© 2024 Hábitos de Oro. Todos los derechos reservados.</p>
</footer>
<script defer src="script.js"></script>
</body>
</html>