-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
283 lines (280 loc) · 9.48 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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Bootstrap</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<nav class="sticky-top navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Juan Ch.</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#cards">Cards</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pic">Picture</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdownMenuLink"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Dropdown
</a>
<div class="dropdown-menu " aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Action 2</a>
<a class="dropdown-item" href="#">Action 3</a>
</div>
</li>
</ul>
</div>
</nav>
<header>
<div id="carouselExampleControls" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div
class="carousel-item active d-flex justify-content-center align-items-center"
style="background-image: url('img/mac.jpg');"
></div>
<div
class="carousel-item d-flex justify-content-center align-items-center"
style="background-image: url('img/black.jpg');"
></div>
<div
class="carousel-item d-flex justify-content-center align-items-center"
style="background-image: url('img/apple.jpg');"
></div>
</div>
<a
class="carousel-control-prev"
href="#carouselExampleControls"
role="button"
data-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a
class="carousel-control-next"
href="#carouselExampleControls"
role="button"
data-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
<main>
<section id="cards">
<div class="container-fluid my-3">
<div class="row">
<div class="mb-3 col-12 col-sm-4 col d-flex justify-content-center">
<div class="card d-flex flex-column align-items-center p-3" style="width: 18rem;">
<i class="fas fa-ad wImg" style="font-size: 50px;"></i>
<div class="card-body d-flex flex-column">
<h5 class="card-title text-center text-success">
Publicidad
</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the bulk of the
card's content.
</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="mb-3 col-12 col-sm-4 col d-flex justify-content-center">
<div class="card d-flex flex-column align-items-center p-3" style="width: 18rem;">
<img src="img/logo.jpg" class="d-block d-sm-none card-img-top wImg" alt="..." />
<img src="img/logo2.png" class="d-none d-sm-block card-img-top wImg" alt="..." />
<div class="card-body d-flex flex-column">
<h5 class="card-title text-center text-primary">
Redes sociales
</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the bulk of the
card's content.
</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="mb-3 col-12 col-sm-4 col d-flex justify-content-center">
<div class="card d-flex flex-column align-items-center p-3" style="width: 18rem;">
<i class="fab fa-accusoft wImg" style="font-size: 50px;"></i>
<div class="card-body d-flex flex-column">
<h5 class="card-title text-center text-warning">
Dominoes
</h5>
<p class="card-text">
Some quick example text to build on the card title and make up the bulk of the
card's content.
</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="container" id="pic">
<div class="row d-flex flex-row flex-wrap">
<div class="col-sm-6 py-4 d-flex justify-content-center order-sm-first order-2">
<img class="rounded-circle" src="img/2section.jpg" alt="" />
</div>
<div
class="col-sm-6 py-4 d-flex flex-column align-items-center justify-content-center order-sm-last order-1"
>
<div class="h3">Downloaded Picture</div>
<p class="text-justify text-break w-50">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Recusandae, excepturi
assumenda omnis.
</p>
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button
class="btn btn-link"
type="button"
data-toggle="collapse"
data-target="#collapseOne"
aria-expanded="true"
aria-controls="collapseOne"
>
Más INFO
</button>
</h2>
</div>
<div
id="collapseOne"
class="collapse hide"
aria-labelledby="headingOne"
data-parent="#accordionExample"
>
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry
richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor
brunch. Food truck quinoa nesciunt laborum eiusmod.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="py-5 form">
<div class="container-fluid d-flex justify-content-center">
<div
class="row w-100 d-flex flex-column flex-sm-row align-items-center justify-content-around"
>
<form class="col-8 d-flex flex-column justify-content-center my-4 order-sm-2">
<h3 class="contacto">CONTACTO</h3>
<div class="form-row">
<div class="col d-flex justify-content-around flex-wrap flex-sm-nowrap my-3">
<div class="form-group pr-1">
<label for="formGroupExampleInput">Nombre</label>
<input
type="text"
class="form-control"
id="formGroupExampleInput"
placeholder="Ingresa tu nombre"
/>
</div>
<div class="form-group pr-1">
<label for="formGroupExampleInput">Apellido</label>
<input
type="text"
class="form-control"
id="formGroupExampleInput"
placeholder="Ingresa tu apellido"
/>
</div>
<div class="form-group">
<label for="formGroupExampleInput">Email</label>
<input
type="email"
class="form-control"
id="formGroupExampleInput"
placeholder="Ingresa tu correo"
/>
</div>
</div>
</div>
<div class="form-row">
<div class="col d-flex justify-content-center flex-wrap flex-sm-nowrap my-3">
<select class="custom-select m-2">
<option selected>Género</option>
<option value="1">Hombre</option>
<option value="2">Mujer</option>
<option value="3">Otro</option>
<option value="3">Prefiero no decirlo</option>
</select>
<input type="date" class="form-control m-2" id="formGroupExampleInput" />
</div>
</div>
<div class="form-row">
<div class="col">
<div class="form-group my-3">
<label for="exampleFormControlTextarea1">Dejá tu mensaje</label>
<textarea
class="form-control"
id="exampleFormControlTextarea1"
rows="5"
></textarea>
</div>
</div>
</div>
<div class="form-check my-3">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1" />
<label class="form-check-label" for="defaultCheck1">
Acepto los términos, recibir SPAM y que vendan mi información.
</label>
</div>
<button type="submit" class="btn btn-dark my-3">
ENVIAR
</button>
</form>
<div class="col d-flex justify-content-around my-4">
<i class="fas fa-phone"></i>
<i class="fas fa-envelope-open-text"></i>
<i class="fas fa-horse"></i>
</div>
</div>
</div>
</section>
</main>
</body>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/1206c45280.js"></script>
<script>
$('.carousel').carousel({ interval: 2000 });
</script>
</html>