-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (113 loc) · 5.84 KB
/
index.html
File metadata and controls
159 lines (113 loc) · 5.84 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<title>BootStrap.4</title>
</head>
<body>
<header class="bg-dark">
<div class="container-fluid">
<nav>
<ul class="nav nav-pills bg-dark">
<li class="nav-item">
<a class="nav-link active disabled" href="index.html" >Keep it Up Alejo !</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-white" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Grid</a>
<div class="dropdown-menu bg-dark">
<a class="dropdown-item text-white" href="grid/columnas_alineadas_horizontalmente.html">Horizontally Aligned Columns</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="grid/columnas_alineadas_verticalmente.html">Vertically Aligned Columns</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="grid/columnas_anidadas.html">Nested Columns</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="grid/grid.html">Grid System</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="grid/offset.html">OffSet</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="grid/ordenamiento_columnas.html">Ordering Columns</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-white" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Practices</a>
<div class="dropdown-menu bg-dark">
<a class="dropdown-item text-white" href="responsive_utilities.html">Responsive Utilities</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="tipografias.html">Typographies</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="images.html">Images I</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="images2.html">Images II</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="Tables.html">Tables</a><div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="MediaObject.html">MediaObject I</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="MediaObject2.html">MediaObject II</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="CommentBox.html">Comment Box</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="Alerts.html">Alerts</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="Badges.html">Badges</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="Buttons.html">Buttons I</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-white" href="Buttons2.html">Buttons II</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="#">Disabled</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container-fluid border border-warning">
<div class="row" >
<div class="col-12 bg-info w100" >
<h1 class="display-3 text-white text-center">Go Beyond</h1>
</div>
</div>
<div class="row d-flex justify-content-between border border-danger no-gutters" >
<div class="card col-12 col-sm-12 col-lg-4" style="width: 18rem;">
<img class="card-img-top mt-3" src="GridSystem.png" alt="Grid System" >
<div class="card-body text-center mt-3">
<h5 class="card-title mt-3">Grid System</h5>
<p class="card-text mt-3">Here are some HTML files with the practices regarding the Bootstrap's Grid System.</p>
<a href="GridSystem.html" class="btn btn-primary mt-3"><h3>Learn More</h3></a>
</div>
</div>
<div class="card col-12 col-sm-6 col-lg-4" style="width: 18rem;">
<div class="row">
<div class="col-12">
<img class="card-img-top" src="Bootstrap_4.jpeg" alt="Bootstrap_4">
</div>
</div>
<div class="card-body text-center">
<h5 class="card-title">FrameWork Features</h5>
<p class="card-text">Check further information about the cool stuff that you are able to integrate to your Web Pages.</p>
<a href="practices.html" class="btn btn-primary"><h3>Dive In</h3></a>
</div>
</div>
<div class="card col-12 col-sm-6 col-lg-4" style="width: 18rem;">
<img class="card-img-top" src="..." alt="Card image cap">
<div class="card-body text-center">
<h5 class="card-title">Card title</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>
</main>
<footer></footer>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>