-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (119 loc) · 4.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/breakpoints.css" />
<title>Bootstrap</title>
</head>
<body>
<header class="row pt-5">
<h1 class="text-center">Bootstrap</h1>
</header>
<div class="container">
<section class="row pt-5">
<div class="col-6 bg-dark text-white p-3">
<h2 class="fs-2">About</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab quisquam
delectus fuga numquam omnis dolore rerum minima nemo, fugiat cumque
vel cum quidem beatae fugit qui voluptas tempore odio
exercitationem!
</p>
</div>
<div class="col-6 bg-secondary p-3">
<h2 class="fs-2">About</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab quisquam
delectus fuga numquam omnis dolore rerum minima nemo, fugiat cumque
vel cum quidem beatae fugit qui voluptas tempore odio
exercitationem!
</p>
</div>
<div class="col-6 bg-secondary p-3">
<h2 class="fs-2">About</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab quisquam
delectus fuga numquam omnis dolore rerum minima nemo, fugiat cumque
vel cum quidem beatae fugit qui voluptas tempore odio
exercitationem!
</p>
</div>
<div class="col-6 bg-dark text-white p-3">
<h2 class="fs-2">About</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab quisquam
delectus fuga numquam omnis dolore rerum minima nemo, fugiat cumque
vel cum quidem beatae fugit qui voluptas tempore odio
exercitationem!
</p>
</div>
</section>
<section class="row mt-5 justify-content-around">
<div class="col-3">
<div class="card img-fluid">
<img src="img/dog.jpg" 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="col-3">
<div class="card img-fluid">
<img src="img/dog.jpg" 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="col-3">
<div class="card img-fluid">
<img src="img/dog.jpg" 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="col-3">
<div class="card img-fluid">
<img src="img/dog.jpg" 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>
</section>
</div>
</body>
</html>