-
Notifications
You must be signed in to change notification settings - Fork 1
/
gutter.html
38 lines (36 loc) · 1.11 KB
/
gutter.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Belajar Bootstrap</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="row text-center gx-3 gy-5">
<div class="col-4 bg-warning">
<p class="bg-success">Eko</p>
</div>
<div class="col-4 bg-warning">
<p class="bg-success">Kurniawan</p>
</div>
<div class="col-4 bg-warning">
<p class="bg-success">Khannedy</p>
</div>
<div class="col-4 bg-warning">
<p class="bg-success">Eko</p>
</div>
<div class="col-4 bg-warning">
<p class="bg-success">Kurniawan</p>
</div>
<div class="col-4 bg-warning">
<p class="bg-success">Khannedy</p>
</div>
</div>
</div>
<script src="bootstrap/js/bootstrap.bundle.js"></script>
</body>
</html>