-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
302 lines (295 loc) · 12.2 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Admin Dashboard Using HTML CSS Javascript</title>
<!---Material Icon-->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!---Style Sheet-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<aside>
<div class="top">
<div class="logo">
<img src="images/logo.png" alt="logo">
<h2 class="company-name">MOBO<span class="tech-colored">TECH</span></h2>
</div>
<div class="close" id="close-btn">
<span class="material-symbols-sharp">close</span>
</div>
</div>
<div class="sidebar">
<a href="#" class="active">
<span class="material-symbols-sharp fill-icon">dashboard</span>
<h3>Dashboard</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">
person
</span>
<h3>Customers</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">receipt_long</span>
<h3>Orders</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">insights</span>
<h3>Analytics</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">mail_outline</span>
<h3>Messages</h3>
<span class="message-count">7</span>
</a>
<a href="#">
<span class="material-symbols-sharp">inventory</span>
<h3>Products</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">report</span>
<h3>Report</h3>
</a>
<a href="#">
<span class="material-symbols-sharp fill-icon">settings</span>
<h3>Settings</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">add</span>
<h3>Add Product</h3>
</a>
<a href="#">
<span class="material-symbols-sharp">logout</span>
<h3>Logout</h3>
</a>
</div>
</aside>
<!-- END OF ASIDE -->
<main>
<h1>Dashboard</h1>
<div class="date">
<input type="date">
</div>
<div class="insights">
<div class="sales">
<span class="material-symbols-sharp">analytics</span>
<div class="middle">
<div class="left">
<h3>Total Sales</h3>
<h1>$37,770</h1>
</div>
<div class="progress">
<svg>
<circle cx="38" cy="38" r="36"></circle>
</svg>
<div class="number">
<p>79%</p>
</div>
</div>
</div>
<small class="text-muted">Last 24 Hours</small>
</div>
<!--********** End of sales ******************-->
<div class="expenses">
<span class="material-symbols-sharp">bar_chart</span>
<div class="middle">
<div class="left">
<h3>Total Expenses</h3>
<h1>$13,680</h1>
</div>
<div class="progress">
<svg>
<circle cx="38" cy="38" r="36"></circle>
</svg>
<div class="number">
<p>37%</p>
</div>
</div>
</div>
<small class="text-muted">Last 24 Hours</small>
</div>
<!--********** End of Expenses ******************-->
<div class="income">
<span class="material-symbols-sharp">stacked_line_chart</span>
<div class="middle">
<div class="left">
<h3>Total Income</h3>
<h1>$54,237</h1>
</div>
<div class="progress">
<svg>
<circle cx="38" cy="38" r="36"></circle>
</svg>
<div class="number">
<p>67%</p>
</div>
</div>
</div>
<small class="text-muted">Last 24 Hours</small>
</div>
<!--********** End of Income ******************-->
</div>
<div class="recent-orders">
<h2>Recent Orders</h2>
<table>
<thead>
<tr>
<th>Product Name</th>
<th>Product Number</th>
<th>Payment</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mobo D3500 DSLR</td>
<td>3262</td>
<td>Due</td>
<td class="warning">Pending</td>
<td class="primary">Details</td>
</tr>
<tr>
<td>Mobo Gen5 Smart Watch</td>
<td>7392</td>
<td>Done</td>
<td class="warning">Pending</td>
<td class="primary">Details</td>
</tr>
<tr>
<td>Mobo GPS Quadcopter drone</td>
<td>3494</td>
<td>Done</td>
<td class="warning">Pending</td>
<td class="primary">Details</td>
</tr>
<tr>
<td>Mobo D3500 DSLR</td>
<td>3262</td>
<td>Due</td>
<td class="warning">Pending</td>
<td class="primary">Details</td>
</tr>
<tr>
<td>Mobo D3500 DSLR</td>
<td>3262</td>
<td>Due</td>
<td class="warning">Pending</td>
<td class="primary">Details</td>
</tr>
</tbody>
</table>
<a href="#">Show All</a>
</div>
</main>
<!--********** End of Main ******************-->
<div class="right">
<div class="top">
<button id="menu-btn">
<span class="material-symbols-sharp">menu</span>
</button>
<div class="theme-toggler">
<span class="material-symbols-sharp fill-icon active">light_mode</span>
<span class="material-symbols-sharp fill-icon">dark_mode</span>
</div>
<div class="profile">
<div class="info">
<p>Hey, <b>Lily Bright</b></p>
<small class="text-muted">Admin</small>
</div>
<div class="profile-photo">
<img src="images/3.png" alt="profile photo">
</div>
</div>
</div>
<!-- End of top -->
<div class="recent-updates">
<h2>Recent Updates</h2>
<div class="updates">
<div class="update">
<div class="profile-photo">
<img src="images/2.png" alt="profile-photo">
</div>
<div class="message">
<p><b>Edward Styles</b> received his order of Mobo D3500 DSLR.</p>
<small class="text-muted">7 Minutes Ago</small>
</div>
</div>
<div class="update">
<div class="profile-photo">
<img src="images/4.png" alt="profile-photo">
</div>
<div class="message">
<p><b>Right Yagami</b> received his order of Mobo Gen5 Smart Watch.</p>
<small class="text-muted">5 Minutes Ago</small>
</div>
</div>
<div class="update">
<div class="profile-photo">
<img src="images/5.png" alt="profile-photo">
</div>
<div class="message">
<p><b>Lisa Ray</b> received his order of Mobo GPS Quadcopter drone.</p>
<small class="text-muted">3 Minutes Ago</small>
</div>
</div>
</div>
</div>
<!-- ***************End of recent updates**************** -->
<div class="sales-analytics">
<h2>Sales Analytics</h2>
<div class="item online">
<div class="icon">
<span class="material-symbols-sharp fill-icon">shopping_cart</span>
</div>
<div class="right">
<div class="info">
<h3>ONLINE ORDERS</h3>
<small class="text-muted">Last 24 Hours</small>
</div>
<h5 class="success">+47%</h5>
<h3>7327</h3>
</div>
</div>
<div class="item offline">
<div class="icon">
<span class="material-symbols-sharp fill-icon">local_mall</span>
</div>
<div class="right">
<div class="info">
<h3>OFFLINE ORDERS</h3>
<small class="text-muted">Last 24 Hours</small>
</div>
<h5 class="danger">-7%</h5>
<h3>823</h3>
</div>
</div>
<div class="item customers">
<div class="icon">
<span class="material-symbols-sharp fill-icon">person</span>
</div>
<div class="right">
<div class="info">
<h3>NEW CUSTOMERS</h3>
<small class="text-muted">Last 24 Hours</small>
</div>
<h5 class="success">+67%</h5>
<h3>3245</h3>
</div>
</div>
<div class="item add-product">
<div>
<span class="material-symbols-sharp">add</span>
<h3>Add Products</h3>
</div>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>