-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (31 loc) · 962 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="top_right">
<span class="settings">
<a href="add.html" class="add-edit-event">
<img class="icon edit-icon" src="img/edit-black.png" />
</a>
</span>
<span class="night_mode ">
<img class="icon night-icon" src="img/night-black.png" />
</span>
</div>
<div class="container">
<div class="content" id="content">
<div id="name"></div>
<div id="time"></div>
</div>
</div>
<script src="js/jquery.min.js" ></script>
<script src="js/tether.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>