-
Notifications
You must be signed in to change notification settings - Fork 2
/
01-grid.html
executable file
·99 lines (76 loc) · 3.47 KB
/
01-grid.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
<!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, shrink-to-fit=no">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@400;500&display=swap" rel="stylesheet">
<!-- Mis hojas de estilo personalizadas -->
<link rel="stylesheet" href="css/estilos.css">
</head>
<body>
<h2 class="lectura-titulo">Grid</h2>
<main class="container">
<div class="row">
<div class="col-12 col-md-8 col-lg-7">
<h2>Contenido Principal</h2>
<p>Kitsch raw denim cliche chicharrones, chambray tbh neutra sustainable polaroid four dollar.</p>
<p>Polaroid thundercats church-key synth, chillwave pug scenester ethical meggings farm-to-table. </p>
<p>Disrupt iPhone banjo sustainable, neutra ennui pabst offal kickstarter. </p>
<p>Narwhal salvia marfa listicle ugh. Wayfarers unicorn portland, four loko wolf narwhal actually woke
migas
tilde disrupt
cray tousled authentic. </p>
<p>Aesthetic banh mi venmo bitters poutine. Asymmetrical tacos 90's authentic truffaut bitters.</p>
<p>Pork belly portland enamel pin, hell of direct trade street art YOLO godard.</p>
</div>
<div class="col-12 col-md-4 col-lg-5">
<h2>Barra Lateral</h2>
<p>Aesthetic kogi ennui keytar fap cornhole you probably haven't heard of them. </p>
<p>Ramps kickstarter pop-up brooklyn tousled. </p>
</div>
</div>
</main>
<div class="container">
<h2>Servicios</h2>
<div class="row">
<div class="col-12 col-sm-6 col-md-4">
<h3>Diseño Web</h3>
<p>Narwhal salvia marfa listicle ugh. Wayfarers unicorn portland, four loko wolf narwhal actually woke
migas
tilde
disrupt cray tousled authentic. </p>
</div>
<div class="col-12 col-sm-6 col-md-4">
<h3>Desarrollo de Apps</h3>
<p>Narwhal salvia marfa listicle ugh. Wayfarers unicorn portland, four loko wolf narwhal actually woke
migas
tilde
disrupt cray tousled authentic. </p>
</div>
<div class="col-12 col-sm-12 col-md-4">
<h3>Tiendas Virtuales</h3>
<p>Narwhal salvia marfa listicle ugh. Wayfarers unicorn portland, four loko wolf narwhal actually woke
migas
tilde
disrupt cray tousled authentic. </p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="offset-2 col-8 col-md-6 offset-md-3"
style="background: red;"
>
<h2>Contacto</h2>
<p>Contactanos aqui</p>
</div>
</div>
</div>
</body>
</html>