-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (119 loc) · 3.61 KB
/
index.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sidebar</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<aside class="sidebar">
<div class="sidebar-header">
<img src="images/logo.png" alt="logo" />
<h2>Const Genius</h2>
</div>
<ul class="sidebar-links">
<h4>
<span>Main Menu</span>
<div class="menu-separator"></div>
</h4>
<li>
<a href="">
<span class="material-symbols-outlined">
dashboard
</span>Dashboard
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
overview
</span>Overview
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
monitoring
</span>Analytics
</a>
</li>
<h4>
<span>General</span>
<div class="menu-separator"></div>
</h4>
<li>
<a href="">
<span class="material-symbols-outlined">
folder
</span>Projects
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
groups
</span>Groups
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
move_up
</span>Transfer
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
flag
</span>All Reports
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
notifications_active
</span>Notifications
</a>
</li>
<h4>
<span>Account</span>
<div class="menu-separator"></div>
</h4>
<li>
<a href="">
<span class="material-symbols-outlined">
account_circle
</span>Profile
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
settings
</span>Settings
</a>
</li>
<li>
<a href="">
<span class="material-symbols-outlined">
logout
</span>Logout
</a>
</li>
</ul>
<div class="user-account">
<div class="user-profile">
<img src="images/profile.png" alt="">
<div class="user-details">
<h3>Const Genius</h3>
<span>Web Developer</span>
</div>
</div>
</div>
</aside>
</body>
</html>