-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (110 loc) · 3.88 KB
/
Copy pathindex.html
File metadata and controls
122 lines (110 loc) · 3.88 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Venta Cubrebocas</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700|Oswald&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.7/fullpage.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<nav class="nav">
<a href="#inicio" class="marca">HEALTH</a>
<ul id="menu" class="menu">
<li data-menuanchor="inicio" class="active">
<a href="#inicio">
Inicio
</a>
</li>
<li data-menuanchor="productos">
<a href="#productos">Productos</a>
</li>
<li data-menuanchor="contacto">
<a href="#contacto">Contacto</a>
</li>
</ul>
</nav>
<main id="fullpage">
<header class="section header" id="inicio">
<div class="contenedor-titulo">
<h1 class="titulo">
<span class="texto-naranja">Salvando</span>
<span class="texto-blanco">Vidas</span>
</h1>
<p class="texto-blanco">Cubrebocas de la más alta calidad</p>
</div>
<div class="contenedor-icono">
<p><a href="#productos" class="texto-blanco"><i class="fas fa-chevron-down"></i></a></p>
</div>
<!-- Video -->
<!-- <video loop muted data-autoplay class="bg-video">
<source src="media/bg-video.m4v" type="video/mp4">
</video> -->
</header>
<section class="section productos">
<article class="slide">
<div class="informacion-producto">
<p class="modelo">
<span class="texto-naranja">Cubreboca Adulto</span>
<span class="texto-negro">Plus</span>
</p>
<p class="descripcion texto-negro">Protégete del COVID-19</p>
<p class="precio">15.00</p>
</div>
</article>
<article class="slide">
<div class="informacion-producto">
<p class="modelo">
<span class="texto-naranja">Cubreboca Adulto</span>
<span class="texto-negro">Plus</span>
</p>
<p class="descripcion texto-negro">Protégete del COVID-19</p>
<p class="precio">15.00</p>
</div>
</article>
<article class="slide">
<div class="informacion-producto">
<p class="modelo">
<span class="texto-naranja">Cubreboca Adulto</span>
<span class="texto-negro">Plus</span>
</p>
<p class="descripcion texto-negro">Protégete del COVID-19</p>
<p class="precio">15.00</p>
</div>
</article>
<article class="slide">
<div class="informacion-producto">
<p class="modelo">
<span class="texto-naranja">Cubreboca Adulto</span>
<span class="texto-negro">Plus</span>
</p>
<p class="descripcion texto-negro">Protégete del COVID-19</p>
<p class="precio">15.00</p>
</div>
</article>
<article class="slide">
<div class="informacion-producto">
<p class="modelo">
<span class="texto-naranja">Cubreboca Adulto</span>
<span class="texto-negro">Plus</span>
</p>
<p class="descripcion texto-negro">Protégete del COVID-19</p>
<p class="precio">15.00</p>
</div>
</article>
</section>
<footer class="section footer">
<h2 class="texto-naranja">Siguenos en Facebook</h2>
<p class="redes-sociales">
<a href="https://www.facebook.com/alma.guizar.18" target="_blank" class="facebook"><i class="fab fa-facebook-f"></i></a>
<!-- <a href="#" class="twitter"><i class="fab fa-twitter"></i></a>
<a href="#" class="instagram"><i class="fab fa-instagram"></i></a> -->
</p>
</footer>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.7/fullpage.js"></script>
<script src="js/app.js"></script>
</body>
</html>