-
Notifications
You must be signed in to change notification settings - Fork 0
/
Btlayout.html
38 lines (36 loc) · 1.36 KB
/
Btlayout.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, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid bg-secondary py-4">
<div class="container bg-light" style="height: 300px"></div>
</div>
<div class="container mt-4">
<div class="row">
<div class="col-12 col-md-6 col-lg-3">
<div class="bg-secondary mb-3" style="height: 200px;"></div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="bg-secondary mb-3" style="height: 200px;"></div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="bg-secondary mb-3" style="height: 200px;"></div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="bg-secondary mb-3" style="height: 200px;"></div>
</div>
<div class=" col-md-12 col-lg-6">
<div class="bg-secondary mb-3" style="height: 500px;"></div>
</div>
</div>
</div>
<footer class="container text-center border-top py-4 mt-4">
<small class="text-muted">© 2024 </small>
</footer>
</body>
</html>