-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchEngine.html
51 lines (51 loc) · 1 KB
/
SearchEngine.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
<!DOCTYPE html>
<html>
<head>
<title>CS 121: Search Engine</title>
<style>
a
{
text-decoration: none;
color: blue;
}
span
{
color: green;
}
font
{
color: red;
}
</style>
</head>
<body style = "background-color:#9494B8;">
<div id = ":">
<center><h1>CS 121: Information Retrieval</h1></center>
<br>
<center><h3>Anuj Shah, Jeremy Yang, Jack Murray</h3></center>
<br>
<form method = "get" id = "url" target = "_self">
<div style = "margin-top:20px;padding:10px;width:25em;">
<table border = "0" cellpadding = "0">
<tr>
<td>
<input
type = "text"
spellcheck = "false"
name = "q"
size = "200"
maxlength = "200"
id = "input"
placeholder = "Enter Query"/>
</td>
<td>
<input id = "submit" type = "submit" value = "Search"/>
</td>
</tr>
</table>
</div>
</form>
</div>
<script src = "SearchEngine.js"></script>
</body>
</html>