-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-tab.html
56 lines (47 loc) · 1.66 KB
/
new-tab.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<title>New Tab</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="vendor/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="vendor/skeleton/normalize.css">
<link rel="stylesheet" href="vendor/skeleton/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/widgets.css">
</head>
<body>
<!-- Flashes container -->
<div id="flashes"></div>
<!-- Background overlay -->
<div id="overlay"></div>
<div class="content">
<!-- Settings icon -->
<a class="settingsIcon" id="settings">
<i class="ion-android-settings"></i>
</a>
<!-- Top spacing -->
<div style="margin-top: 185px"></div>
<!-- Clock Widget -->
<div id="digitalclock">
<div class="digitalclock">
<h1 id="clocktext"></h1>
</div>
</div>
<!-- Search Widget -->
<div class="search">
<input id="search" type="text" name="search" placeholder="Search or type URL"/>
</div>
<!-- Topsites Widget -->
<div id="topsites" class="topsites">
</div>
</div>
<!-- Widgets -->
<script type="text/javascript" src="js/widgets/background.js"></script>
<script type="text/javascript" src="js/widgets/clock.js"></script>
<script type="text/javascript" src="js/widgets/topsites.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/content.js"></script>
</body>
</html>