-
Notifications
You must be signed in to change notification settings - Fork 1
/
flex.html
39 lines (34 loc) · 1.33 KB
/
flex.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
<!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="d-flex bg-secondary flex-row mb-3">
<div class="p-2 bg-primary order-3">Home</div>
<div class="p-2 bg-success flex-fill order-2">Menu</div>
<div class="p-2 bg-warning order-1">Logout</div>
</div>
<div class="d-flex bg-secondary flex-row mb-3">
<div class="p-2 bg-primary">Home</div>
<div class="p-2 bg-success flex-fill">Menu</div>
<div class="p-2 bg-warning">Logout</div>
</div>
<div class="d-flex bg-secondary flex-row" style="height: 200px">
<div class="p-2 bg-primary">Eko</div>
<div class="p-2 bg-success align-self-center">Kurniawan</div>
<div class="p-2 bg-warning">Khannedy</div>
</div>
<div class="d-flex bg-secondary flex-row align-content-center justify-content-center flex-wrap" style="height: 200px">
<div class="p-2 bg-primary">Eko</div>
<div class="p-2 bg-success">Kurniawan</div>
<div class="p-2 bg-warning">Khannedy</div>
</div>
<script src="bootstrap/js/bootstrap.bundle.js"></script>
</body>
</html>