-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
33 lines (30 loc) · 830 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="icons/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="sidebar/style.css">
</head>
<style>
#konteudu{
margin-top: 100px;
margin-left: 300px;
}
</style>
<body>
<?php
include("navbar.php");
?>
<div id="konteudu">
<div class="d-flex">
<div class="p-2 flex-grow-1">Flex item</div>
<div class="p-2">Flex item </div>
<div class="p-2">Third flex item</div>
</div>
</div>
<script src = "bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>