-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
68 lines (63 loc) · 1.67 KB
/
index.php
File metadata and controls
68 lines (63 loc) · 1.67 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
<?php
$base_url = "./";
$page_title = "Home";
include './components/navbar.php';
?>
<style>
.box {
background: red;
height: 300px;
width: 100%;
}
.box_2 {
background: rgba(255, 0, 0, 0.5);
height: 300px;
width: 100%;
}
</style>
<div class="container py-5">
<a href="/" class="btn bg-warning border border-5 border-success shadow shadow-lg">Home</a>
</div>
<!-- 12-24 -->
<!-- xs <= 412px -->
<!-- sm >= 576px -->
<!-- md >= 768px -->
<!-- lg >= 992px -->
<!-- xl >= 1200px -->
<!-- sm - 12/6 -> 2 columns - 50% -->
<!-- md - 12/4 -> 3 columns - 33.33% -->
<!-- md - 12/3 -> 4 columns - 25% -->
<!-- md - 12/2 -> 6 columns - 12.5% -->
<div class="container-fluid">
<div class="row">
<div class="mb-4 col-sm-6 col-md-4 col-lg-3 col-xl-2">
<div class="box"></div>
</div>
<div class="mb-4 col-sm-6 col-md-4 col-lg-3 col-xl-2">
<div class="box_2"></div>
</div>
<div class="mb-4 col-sm-6 col-md-4 col-lg-3 col-xl-2">
<div class="box"></div>
</div>
<div class="mb-4 col-sm-6 col-md-4 col-lg-3 col-xl-2">
<div class="box_2"></div>
</div>
<div class="mb-4 col-sm-6 col-md-4 col-lg-3 col-xl-2">
<div class="box"></div>
</div>
<div class="mb-4 col-sm-6 col-md-4 col-lg-3 col-xl-2">
<div class="box_2"></div>
</div>
</div>
<div class="row mt-5">
<div class="col-4">
<div class="box"></div>
</div>
<div class="col-4">
<div class="box_2"></div>
</div>
</div>
</div>
<?php
include './components/footer.php';
?>