-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.27 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<title>05 Sidebar With Menu</title>
</head>
<body>
<!-- your code here, remember to wrap everything in a container-fluid <div> -->
<div class="container-fluid">
<div class="row">
<div class="col-2">
<ul class="nav flex-column">
<li class="nav-item"></li>
<a class="nav-link" href="#">Home</a>
<li class="nav-item"></li>
<a class="nav-link" href="#">Profile</a>
<li class="nav-item"></li>
<a class="nav-link" href="#">Messages</a>
</ul>
</div>
<div class="col-10 bg-light">
<h4>Hello!</h4>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Distinctio accusamus autem molestias mollitia rerum voluptate, saepe
necessitatibus nemo officiis atque reprehenderit laboriosam est, explicabo officia commodi repellat totam quia. Est.
</p>
<button type="button" class="btn btn-primary">Click me!</button>
</div>
</div>
</div>
</body>
</html>