-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
40 lines (36 loc) · 1.31 KB
/
dashboard.html
File metadata and controls
40 lines (36 loc) · 1.31 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 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="styles.css">
</head>
<header>
<div class="options-container">
<button class="options"><img src="https://static-00.iconduck.com/assets.00/line-horizontal-3-decrease-circle-fill-icon-2048x2048-33ka5zyh.png"></button>
</div>
</header>
<body>
<div class="main">
<div class="calendar">
<h2 id="monthDisplay"></h2>
<div id="calendarContainer"></div>
<button id="nextBtn">Next Month</button>
</div>
</div>
<div id="sidePanel" class="side-panel">
<button class="profile-buttons">Profile</button>
<button class="profile-buttons">Achievements</button>
<select class="profile-buttons">
<option disabled selected>Set prefernces</option>
<option value1="tamil">tamil</option>
<option value1="english">english</option>
</select>
<div>
<button class="profile-buttons">About us</button>
</div>
</div>
</div>
<script src="dashboard.js"></script>
</body>