forked from azk0019/CourseProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.42 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.42 KB
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="index.css">
<title>EverySearch</title>
</head>
<body>
<div class="info_submission">
<div class="search_bar">
<label for="search_bar">Search Here!</label>
<input type="text" id="search_bar" name="search_bar">
<button onclick="searchFunc()">Search</button>
</div>
<div class="option_buttons">
<div class="ind_button">
<input type="checkbox" id="google_box" name="google_box">
<label for="google_box">Google</label>
</div>
<div class="ind_button">
<input type="checkbox" id="bing_box" name="bing_box">
<label for="bing_box">Bing</label>
</div>
<div class="ind_button">
<input type="checkbox" id="excite_box" name="excite_box">
<label for="excite_box">Excite</label>
</div>
<div class="ind_button">
<input type="checkbox" id="lycos_box" name="lycos_box">
<label for="lycos_box">Lycos</label>
</div>
</div>
</div>
<hr>
<main id="iframe_grid">
</main>
</body>
<script src="index.js"></script>
</html>