-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ALLSearch</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="Logo">ALLSearch</div>
<input type="text" id="searchInput" class="searchInput" placeholder="Search something...."/>
<div class="options">
<h1>Change Search Engine ▼</h1>
<ul>
<li onclick="setEngine('Yahoo')"><ion-icon name="logo-yahoo"></ion-icon></li>
<li onclick="setEngine('Google')"><ion-icon name="logo-google"></ion-icon></li>
<li onclick="setEngine('bing')">bing</li>
<li onclick="setEngine('BiliBili')">BiliBili</li>
<li onclick="setEngine('DuckDuckGo')">DuckDuckGo</li>
<li onclick="setEngine('github')" ><ion-icon name="logo-github"></ion-icon></li>
<li onclick="setEngine('amazon')">amazon</li>
<li onclick="setEngine('Youtube')"><ion-icon name="logo-youtube"></ion-icon></li>
</ul>
</div>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
<script src="index.js"></script>
</html>