-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkel2.html
More file actions
86 lines (83 loc) · 5.03 KB
/
kel2.html
File metadata and controls
86 lines (83 loc) · 5.03 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Sidebar</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="stylesKel2.css" rel="stylesheet" />
</head>
<body>
<div class="d-flex" id="wrapper">
<!-- Sidebar-->
<div class="border-end" id="sidebar-wrapper" style="background: #0D28A6;">
<div class="sidebar-heading" style="background: #0D28A6; color: white;"><img src="./Assets/Rectangle 63.png" alt=""></div>
<div class="list-group list-group-flush" style="background: #0D28A6;">
<a class="list-group-item list-group-item-action list-group-item-light py-3 pe-3" style="background: #0D28A6;" href="#!"><img src="./Assets/Home.png" alt=""></a>
<a class="list-group-item list-group-item-action list-group-item-light py-3 pe-3" style="background: #0D28A6;" href="#!"><img src="./Assets/Administrator.png" alt=""></a>
</div>
</div>
<div class="border-end bg-white" id="sidebar-wrapper" style="min-width: 20%;">
<div class="sidebar-heading border-bottom bg-light"><img src="./Assets/Rectangle 62.png" alt=""></div>
<div class="list-group list-group-flush">
<h1 class="list-group-item list-group-item-action list-group-item-light p-3" href="#!">Dashboard</h1>
<a class="list-group-item list-group-item-action list-group-item-light p-3" href="#!">Dashboard</a>
</div>
</div>
<!-- Page content wrapper-->
<div id="page-content-wrapper">
<!-- Top navigation-->
<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom" style="margin-top: 0.60%;">
<div class="container-fluid">
<button class="btn btn-primary"><img src="./Assets/fi_menu.png" alt=""></button>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation"><span
class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mt-2 mt-lg-0">
<li class="nav-item"><form class="d-flex"><input class="form-control" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success me-3 fw-bold" type="submit">Search</button>
</form>
</li>
<li class="nav-item">
<div class="flex-shrink-0 dropdown">
<a href="#"
class="d-block d-flex flex-row justify-content-center align-items-center link-dark text-decoration-none dropdown-toggle me-2"
id="dropdownUser2" data-bs-toggle="dropdown" aria-expanded="false">
<img src="./Assets/Group 15.png" width="32" height="32" class="rounded-circle me-2">
<p class="d-flex align-items-center justify-content-center me-2 text-md-center">Unis Badri</p>
</a>
<ul class="dropdown-menu text-small shadow" aria-labelledby="dropdownUser2">
<li><a class="dropdown-item" href="#">Log Out</a></li>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page content-->
<div class="container-fluid">
<h1 class="mt-4">Simple Sidebar</h1>
<p>The starting state of the menu will appear collapsed on smaller screens, and will appear
non-collapsed on larger screens. When toggled using the button below, the menu will change.</p>
<p>
Make sure to keep all page content within the
<code>#page-content-wrapper</code>
. The top navbar is optional, and just for demonstration. Just create an element with the
<code>#sidebarToggle</code>
ID which will toggle the menu when clicked.
</p>
</div>
</div>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>