forked from z-------------/New-New-Tab-Page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
newtab.html
70 lines (70 loc) · 2.38 KB
/
newtab.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>New Tab</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="ntp.js"></script>
</head>
<body>
<div id="white"></div>
<div id="sidewipe"></div>
<div id="bg"></div>
<div id="header">
<span id="title">New Tab</span>
</div>
<div id="container">
</div>
<div id="appbutton"></div>
<div id="optionbutton"></div>
<div id="drawer">
<input type="text" id="search" autocomplete="off" name="q" placeholder="Find" spellcheck="false">
<div id="close"></div>
</div>
<div id="topright">
<div id="weatherprvw"></div>
<div id="stumble"></div>
<div id="fbmsg"></div>
<div id="fbnotif"></div>
<div id="tumpost"></div>
<div id="bbcnews"></div>
</div>
<div id="appdrawerframe">
<div id="actualdrawer">
<div class="drawersection" id="topsites">
<div class="drawerti" id="mostvis">Most Visited</div>
</div>
<div class="drawersection" id="applist">
<div class="drawerti">
Installed Apps
<a href="https://chrome.google.com/webstore/"><div class="storelink" id="bmedit">Store</div></a>
</div>
</div>
</div>
<div id="drawerarrow"></div>
</div>
<div id="appsicon"></div>
<div id="bookmarks"></div>
<div id="bmdrawerframe">
<div id="bmdrawer">
<div class="drawerti">
Bookmarks
</div>
<div id="bookmarkslist">
<div id="bmsearchtip">Search for bookmarks and results will appear here</div>
</div>
<input type="text" id="bmsearch" placeholder="Search">
</div>
<div id="bmarrow"></div>
</div>
<div id="newsdrawerframe">
<div id="newsarrow"></div>
<div id="newsdrawer">
<div class="drawerti">
News
</div>
<div id="newslist"></div>
</div>
</div>
<iframe id="options" src="options/index.html"></iframe>
</body>
</html>