-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (31 loc) · 910 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
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> New Tab </title>
<link rel="stylesheet" type="text/css" href="/styles.css">
<link rel="icon" href="chrome://branding/content/about-logo.png">
</head>
<body id="body">
<div class="search-bar">
<input id="searchInput" type="text" placeholder="Search...">
<button onclick="searchGoogle()"> Search </button>
</div>
<div id="itembox">
</div>
<div id="settingsbar" class="hidden">
<div id="addicon">
<img src="/images/add.png" onclick="newIcon()"/>
</div>
<div id="reloadpage" onclick="reloadPage()">
<img src="/images/reload.png"/>
</div>
<div id="removeicon" onclick="removeIcon()">
<img src="/images/remove.png"/>
</div>
</div>
<script src="/scriptjumpingcats.js"></script>
<script src="/script.js"></script>
</body>
</html>