-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (107 loc) · 6.32 KB
/
index.html
File metadata and controls
127 lines (107 loc) · 6.32 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
<!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=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<title >Bootstrap grid</title>
</head>
<body>
<div class="row bg-dark p-3">
<h1 class="m-3 text-white">Bootstrap Grid</h1>
</div>
<div class="container">
<div class="row">
<div class="col-8 border border-dark">
<div class="row">
<div class="card">
<div class="card-body">
<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 class="row">
<div class="card" >
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<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 class="row">
<div class="card" >
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<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>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Fugiat, tenetur quasi sint laboriosam sequi velit, dolore excepturi debitis at animi aliquam nam amet rem. Impedit qui delectus accusamus voluptas similique!
</p>
</div>
<div class="col-4">
<div class="row">
<div class="card">
<div class="card-body">
<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 class="row">
<div class="card" >
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<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 class="row">
<div class="card" >
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<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>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium, sapiente commodi. Nobis officiis saepe quas fuga porro expedita accusamus repellat, atque officia doloremque animi aspernatur voluptatum. Quidem perferendis aut labore?
</p>
</div>
</div>
<div class="row mb-3">
<div class="col-lg">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Two_Medicine_Lake.jpg/500px-Two_Medicine_Lake.jpg" alt="">
</div>
<div class="col-lg">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Two_Medicine_Lake.jpg/500px-Two_Medicine_Lake.jpg" alt="">
</div>
<div class="col-lg">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Two_Medicine_Lake.jpg/500px-Two_Medicine_Lake.jpg" alt="">
</div>
<div class="col-lg">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Two_Medicine_Lake.jpg/500px-Two_Medicine_Lake.jpg" alt="">
</div>
<div class="col-lg">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Two_Medicine_Lake.jpg/500px-Two_Medicine_Lake.jpg" alt="">
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
</body>
</html>