-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
41 lines (39 loc) · 1.02 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div id="navbar">
<button id="homeButton">Home</button>
<button id="googleButton">Google</button>
<button id="bingButton">Bing</button>
<button id="duckduckgoButton">DuckDuckGo</button>
<button id="yandexButton">Yandex</button>
</div>
<div id="container">
<input type="text" id="searchInput" placeholder="Enter search query...">
<div id="searchEngines">
<label>
<input type="radio" name="engine" value="google" checked>
Google
</label>
<label>
<input type="radio" name="engine" value="bing">
Bing
</label>
<label>
<input type="radio" name="engine" value="duckduckgo">
DuckDuckGo
</label>
<label>
<input type="radio" name="engine" value="yandex">
Yandex
</label>
</div>
<button id="searchButton">Search</button>
<div id="results"></div>
</div>
<script src="popup.js"></script>
</body>
</html>