-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href='https://fonts.googleapis.com/css?family=Schoolbell' />
</head>
<body>
<div class="page-wrapper">
<div class="clock">
<div id="date"></div>
<div id="time" style="font-family: 'SchoolBell'"></div>
</div>
<div class="switch__container">
<input id="switch-shadow" class="switch switch--shadow" type="checkbox" onclick="changeColor()">
<label for="switch-shadow"></label>
</div>
<div class="home-btn-group">
<button id="btn-left"><a href="todo.html">To-do</a></button>
<button><a href="cal.html">Calendar</a></button>
<button id="btn-right"><a href="notes.html">Notes</a></button>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous">
</script>
<script src="index.js" type="text/javascript"></script>
</body>
</html>