-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindexupdated(dark).html
More file actions
35 lines (32 loc) · 1.21 KB
/
indexupdated(dark).html
File metadata and controls
35 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>
<link href="style(dark).css" rel="stylesheet" type="text/css">
<script src="dateandtime.js"></script>
<body onload="renderTime();">
<header>
<div id="clockDisplay" class="container"></div>
<!-- <div class="container">
<span id="time"></span>
</div> -->
<div class="title">
<h1>Welcome!</h1>
</div>
<div class="button">
<a href="#" class="btn">Notes</a>
<a href="#" class="btn">Assignments</a>
<a href="#" class="btn">To-Do List</a>
<a href="#" class="btn">Calender</a>
</div>
<div class="toggle">
<span>Dark Mode</span>
<div class="dark-mode-switch">
<div class="dark-mode-switch-ident"></div>
</div>
</div>
<script src="darkmode.js"></script>
</header>
</body>
</head>
</html>