-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractica4.html
More file actions
217 lines (200 loc) · 10.4 KB
/
practica4.html
File metadata and controls
217 lines (200 loc) · 10.4 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!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>Landing page</title>
<link rel="stylesheet" href="css/practica4.css">
<link rel="icon" href="../SuaDev01.github.io/img/github.png" type="image/png">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/flowbite@1.5.3/dist/flowbite.min.css" />
</head>
<body class="flex flex-col justify-between">
<header class="mb-20">
<nav
class="p-4 bg-gray-50 rounded border-gray-200 fixed w-full z-20 top-0 left-0 dark:bg-gray-800 dark:border-gray-700">
<div class="container flex flex-wrap justify-between items-center mx-auto">
<a href="#" class="flex items-center">
<img src="https://flowbite.com/docs/images/logo.svg" class="mr-3 h-6 sm:h-10" alt="Flowbite Logo" />
<span class="self-center text-xl font-semibold whitespace-nowrap dark:text-white">SuaDev09</span>
</a>
<button data-collapse-toggle="navbar-solid-bg" type="button"
class="inline-flex justify-center items-center ml-3 text-gray-400 rounded-lg md:hidden hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-blue-300 dark:text-gray-400 dark:hover:text-white dark:focus:ring-gray-500"
aria-controls="navbar-solid-bg" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-6 h-6" aria-hidden="true" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
</svg>
</button>
<div class="hidden w-full md:block md:w-auto" id="navbar-solid-bg">
<ul
class="flex flex-col mt-4 bg-gray-50 rounded-lg md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium md:border-0 md:bg-transparent dark:bg-gray-800 md:dark:bg-transparent dark:border-gray-700">
<li>
<a href="#" target="_blank"
class="block py-2 pr-4 pl-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 md:dark:text-white dark:bg-blue-600 md:dark:bg-transparent"
aria-current="page">Inicio</a>
</li>
<li>
<button id="dropdownNavbarLink" data-dropdown-toggle="dropdownNavbar"
class="flex justify-between items-center py-2 pr-4 pl-3 w-full font-medium text-gray-700 rounded hover:bg-gray-100 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 md:w-auto dark:text-gray-400 dark:hover:text-white dark:focus:text-white dark:border-gray-700 dark:hover:bg-gray-700 md:dark:hover:bg-transparent">
Practicas <svg class="ml-1 w-5 h-5" aria-hidden="true" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg></button>
<!-- Dropdown menu -->
<div id="dropdownNavbar"
class="hidden z-10 w-44 font-normal bg-white rounded divide-y divide-gray-100 shadow dark:bg-gray-700 dark:divide-gray-600">
<ul class="py-1 text-sm text-gray-700 dark:text-gray-400" aria-labelledby="dropdownLargeButton">
<li>
<a href="./index.html" target="_blank"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white">Practica
1</a>
</li>
<li>
<a href="./gorillaz.html" target="_blank"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white">Practica
2</a>
</li>
<li>
<a href="./practica3.html" target="_blank"
class="block py-2 px-4 hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white">Practica
3</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="w-full flex flex-col">
<article class="main">
<div class="main-textimg flex flex-col flex-wrap">
<div class="textimg-text flex flex-col">
<h3>Desarrollamos software a tu medida.</h3>
</div>
<div class="textimg-img">
<img src="./img/practica4/main-img.jpg" alt="">
</div>
</div>
<div class="main-form">
<form action="" class="landing-form">
<h1 class="form-title">Recibir ofertas especiales</h1>
<div class="form-element flex flex-col">
<label for="">Nombre</label>
<input type="text">
</div>
<div class="form-element flex flex-col">
<label for="">Telefono</label>
<input type="text">
</div>
<div class="form-element flex flex-col">
<label for="">Correo</label>
<input type="text">
</div>
<input type="submit" class="main-form-button" value="Registrarse">
</form>
</div>
</article>
<article class="bg-gray-50 dark:bg-gray-800 dark:border-gray-700 flex flex-row flex-wrap justify-around mt-10">
<div class="flex flex-row flex-wrap items-center p-5">
<div class="flex flex-row mx-5">
<svg class="w-8 h-8 text-white mx-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"></path>
</svg>
<p class="h4 text-white flex items-center">
ATENDEMOS TODAS TUS DUDAS
</p>
</div>
<div class="flex flex-row mx-5">
<svg class="w-8 h-8 text-white mx-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M17 9V7a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2m2 4h10a2 2 0 002-2v-6a2 2 0 00-2-2H9a2 2 0 00-2 2v6a2 2 0 002 2zm7-5a2 2 0 11-4 0 2 2 0 014 0z">
</path>
</svg>
<p class="h4 text-white flex items-center">
PRECIOS ACCESIBLES SIN PERDER CALIDAD
</p>
</div>
<div class="flex flex-row mx-5">
<svg class="w-8 h-8 text-white mx-2 " fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z">
</path>
</svg>
<p class="h4 text-white flex items-center">
TE MANTENEMOS INFORMADO TODO EL TIEMPO
</p>
</div>
</div>
</article>
<article class="w-full flex flex-row flex-wrap justify-around mt-20 mb-10">
<div class="cards max-w-sm py-4 px-6 bg-white shadow-2xl rounded-lg">
<div class="flex justify-center -mt-16">
<img class="w-20 h-20 object-cover rounded-full border-2 border-indigo-500"
src="https://images.unsplash.com/photo-1499714608240-22fc6ad53fb2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=334&q=80">
</div>
<div>
<h2 class="text-gray-800 text-3xl font-semibold text-center">Sebastian Girasoles</h2>
<p class="mt-2 text-gray-600 text-justify">Sus tiempos de entrega son demasiado buenos, siempre al pendiente
de mis
necesidades y muy buena atención al cliente!</p>
</div>
</div>
<div class="cards max-w-sm py-4 px-6 bg-white shadow-2xl rounded-lg">
<div class="flex justify-center -mt-16">
<img class="w-20 h-20 object-cover rounded-full border-2 border-indigo-500"
src="https://images.unsplash.com/photo-1499714608240-22fc6ad53fb2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=334&q=80">
</div>
<div>
<h2 class="text-gray-800 text-3xl font-semibold text-center">Kevin Oro</h2>
<p class="mt-2 text-gray-600 text-justify">Desde que decidí invertir en un software con SuaDev, los tiempos de
entrega de
mi empresa han mejora demasiado, sin duda volveria a solicitar sus servicios de nuevo!</p>
</div>
</div>
<div class="cards max-w-sm py-4 px-6 bg-white shadow-2xl rounded-lg">
<div class="flex justify-center -mt-16">
<img class="w-20 h-20 object-cover rounded-full border-2 border-indigo-500"
src="https://images.unsplash.com/photo-1499714608240-22fc6ad53fb2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=334&q=80">
</div>
<div>
<h2 class="text-gray-800 text-3xl font-semibold text-center">Pedro Cano</h2>
<p class="mt-2 text-gray-600 text-justify">Facilidad de uso, capacidad de personalización, calidad asombrosa,
atención al
cliente insuperable. El equipo de
SuaDev es una joya, desde un excelente producto hasta una increíble experiencia para el cliente.</p>
</div>
</div>
</article>
</section>
<footer id="seccion-contact">
<div class="seccion-contact-text">
<p>
<b>SuaDev09.</b> Todos Los Derechos Reservados 2021 ©
</p>
</div>
<div class="seccion-contact-imgs">
<a href="">
<img src="img/facebook.png" class="logo" alt="Facebook">
</a>
<a href="">
<img src="img/twitter.png" class="logo" alt="Twitter">
</a>
<a href="">
<img src="img/instagram.png" class="logo" alt="Instagram">
</a>
</div>
</footer>
<script src="https://unpkg.com/flowbite@1.5.3/dist/flowbite.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
</body>
</html>