-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
46 lines (42 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<i class="icon" id="menu-icon">☰</i>
<div>Dashboard</div>
<i class="icon" id="notification-icon">🔔</i>
</div>
<div class="card">
<h3>You Have 16 Pending Orders</h3>
<p>8 Orders are in Process</p>
<button class="btn">Check</button>
</div>
<div class="card1">
<h3>Yearly Revenue</h3>
<p><strong>37</strong> Sold Items</p>
<p><strong>818.89 KWD</strong> Revenue</p>
</div>
<div>
<h3>Orders Overview</h3>
<div class="order-overview">
<button class="order-button">All</button>
<button class="order-button">Pending</button>
<button class="order-button">Processing</button>
<button class="order-button">Delivered</button>
</div>
</div>
<div class="card">
<p><span style="color: red;">●</span> m.o.kh.alenzii@gmail.com</p>
<p>Purchased a day ago</p>
</div>
</div>
</body>
</html>