-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
executable file
·35 lines (35 loc) · 1.5 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
<!doctype html>
<html>
<head>
<title>New Tab</title>
<link rel="stylesheet" href="css/main_style.css">
<!-- Font awesome is required for the little settings icon on the top left -->
<link rel="stylesheet" href="font-awesome-4.1.0/css/font-awesome.css">
<link rel="stylesheet" href="css/vex.css" />
<link rel="stylesheet" href="css/vex-theme-top.css"/>
</head>
<body>
<i class="fa fa-ellipsis-v settings"></i>
<div class="settingsPanel from-left">
<div class="settingsContainer">
<div class="settingsHeader">SITES BEING TRACKED</div>
<input type="text" class="tracksiteInput" id = "firstSite">
<input type="text" class="tracksiteInput" id = "secondSite">
<input type="text" class="tracksiteInput" id = "thirdSite">
<input type="text" class="tracksiteInput" id = "fourthSite">
<input type="text" class="tracksiteInput" id = "fifthSite">
<div class="buttonsContainer"></div>
</div>
</div>
<div class="container">
<!--- <h1>Today, you have lost</h1> -->
<div id = "actualTime"></div>
<h1 id ="websites"></h1>
<canvas id = "myChart"></canvas>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<script src="js/vex.combined.min.js"></script>
<script src="Chart.js" ></script>
</body>
</html>