forked from jazzface/jazzface.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProductos.html
More file actions
120 lines (112 loc) · 4.64 KB
/
Productos.html
File metadata and controls
120 lines (112 loc) · 4.64 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
<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/Html.html to edit this template
-->
<html>
<head>
<title>Productos</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximun-scale=1.0 ">
<link href="MasEstilos.css" rel="stylesheet" type="text/css"/>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RKHW33TGK2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-RKHW33TGK2');
</script>
<style>
.background-video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
}
.content-layer {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(255, 255, 255, 0.7);
z-index: 1;
}
video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
}
</style>
</head>
<body>
<!-- ----------------------------
<div class="background-video">
<video width="320" height="240" controls loop poster >
<source src="WEB-INF/production ID_4932672.mp4" type="video/mp4">
Your browser does not support the <code>video</code> tag.
</video>
</div>
---------------------------- -->
<h1>Productos</h1>
<nav>
<ul class="menuSuperior">
<li><a href="index.html">Inicio</a></li>
<li><a href="Vision.html">Vision</a></li>
<li><a href="Productos.html">Productos</a></li>
<li><a href="MedioDePago.html"> Medio de pago</a></li>
</ul>
</nav>
<img src="../../src/java/imagenes/ROMERO.png" width="340px" height="160px"alt=""/>
<h2>Aceite de romero</h2>
<h4> Analgésico: ayuda con el dolor de cabeza, musculos y articulaciones
Antioxidante: ayuda a proteger las células del daño celular
Digestivo:ayuda a los procesos gastrointestinales, de indigestión y flatulencia.
Expectorante: ayuda a aliviar la tos y la congestión nasal.
Anti-microbiano: ayuda a combatir infecciones y desinfectar heridas.
<br>
Precio aceite de romero 10ml: S/45.00 soles, no incluye gastos de envio.
</h4>
<hr>
<img src="../../src/java/imagenes/LAVANDA.png" width="300px" height="220px"alt=""/>
<h2>Aceite de lavanda</h2>
<h4> Ansiolítico: ayuda a reducir el estrés, la ansiedad y el insomnio.
Antiinflamatorio: ayuda a aliviar dolores musculares y articulares.
Cicatrizante: ayuda a tratar heridas, quemaduras y acné.
Antiséptico: ayudaa prevenir y tratar infecciones.
Calmante: ayuda a aliviar el dolor, el estrés y la ansiedad.
<br>
Precio aceite de lavanda 10ml: S/45.00 soles, no incluye gastos de envio.
</h4>
<hr>
<img src="../../src/java/imagenes/JAZMIN.png"width="300px" height="220px" alt=""/>
<h2>Aceite de jazmin</h2>
<h4> Ansiolítico: ayuda a reducir el estrés y la ansiedad.
Estimulante: ayuda a mejorar la concentración y la memoria.
Antiinflamatorio: ayuda a aliviar dolores musculares y articulares.
Analgésicas
Cicatrizante:tiene propiedades cicatrizantes y regeneradoras.
<br>
Precio aceite de jazmin 10ml: S/45.00 soles, no incluye gastos de envio.
</h4>
<footer>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="Vision.html">Vision</a></li>
<li><a href="Productos.html">Productos</a></li>
<li><a href="MedioDePago.html"> Medio de pago</a></li>
</ul>
</nav>
</footer>
</body>
</html>