-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (96 loc) · 4.49 KB
/
Copy pathindex.html
File metadata and controls
99 lines (96 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="font.css">
<link rel="stylesheet" href="style.css">
<title>HTML CSS</title>
</head>
<body>
<header>
<nav>
<button class="inicio">Inicio</button>
</nav>
<section class="title-subtitle">
<h1>BEBER. PURIFICAR. VIVIR</h1>
<div class="purificar-pasos-container">
<span class="purificar-pasos-text">PURIFICACIÓN DE ZUMO EN 4 PASOS</span>
<button class="button">Comienza tu purificación</button>
</div>
</section>
</header>
<section class="container-image-principal">
<img class="image-principal" src="./img/image-principal.png" alt="Botellas de Zumo y frutas"
title="Botellas de Zumo y frutas">
</section>
<section class="container-section backgroud-fresco-natural">
<section class="section-text">
<div class="container-section-text">
<span class="fresco-natural-title">100% FRESCO Y NATURAL.</span>
<p class="fresco-natural-p">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eligendi corporis,
delectus eos illo vel, magni error tempore quaerat enim voluptate debitis labore omnis veritatis
modi et, harum in? Quasi, aliquam?</p>
<button class="button">Comienza tu purificación</button>
</div>
</section>
<section class="section-image">
<img class="image-secondary" src="./img/fresco-natural-img.png" alt="Botellas de zumo y frutas"
title="Botellas de zumo y frutas">
</section>
</section>
<section class="container-section backgroud-nutricion">
<section class="section-image image-end order-image">
<img class="image-secondary" src="./img/nutricion-purificacion-img.png" alt="Botellas de zumo y frutas"
title="Botellas de zumo y frutas">
</section>
<section class="section-text text-start order-text">
<div class="container-section-text">
<span class="fresco-natural-title">NUTRICIÓN Y PURIFICACIÓN.</span>
<p class="fresco-natural-p">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eligendi corporis,
delectus eos illo vel, magni error tempore quaerat enim voluptate debitis labore omnis veritatis
modi et, harum in? Quasi, aliquam?</p>
<button class="button">Comienza tu purificación</button>
</div>
</section>
</section>
<section class="container-section backgroud-sabores-premiados">
<section class="section-text">
<div class="container-section-text">
<span class="fresco-natural-title">SABORES PREMIADOS</span>
<p class="fresco-natural-p">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eligendi corporis,
delectus eos illo vel, magni error tempore quaerat enim voluptate debitis labore omnis veritatis
modi et, harum in? Quasi, aliquam?</p>
<button class="button">Comienza tu purificación</button>
</div>
</section>
<section class="section-image">
<img class="image-secondary" src="./img/fresco-natural-img.png" alt="Botellas de zumo y frutas"
title="Botellas de zumo y frutas">
</section>
</section>
<footer class="container-footer">
<section class="follow-us">
<h3>SÍGANOS</h3>
</section>
<section class="about">
<h3>SOBRE NOSOSTROS</h3>
</section>
<section class="container-form">
<form class="form" action="">
<div class="form-column">
<input class="input" placeholder="Nombre" type="text">
<input class="input" placeholder="Email" type="email">
<input class="input" placeholder="Teléfono" type="text">
</div>
<div class="form-column">
<textarea class="input" name="" id="" cols="30" rows="5"
placeholder="Introduzca su mensaje aquí"></textarea>
<button class="button">Enviar</button>
</div>
</form>
</section>
</footer>
</body>
</html>