-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.42 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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>General Search</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class = topcorner>
<nav aria-label="...">
<ul class="pagination pagination-sm">
<li class="page-item active" aria-current="page">
<span class="page-link">General Search</span>
</li>
<li class="page-item"><a class="page-link" href="index1.html">Image Search</a></li>
<li class="page-item"><a class="page-link" href="index2.html">Advanced Search</a></li>
</ul>
</nav>
</div>
<form class="qbox" action="https://google.com/search">
<img src="googlelogo_color_272x92dp.png" style="margin-bottom: 50px;"><br>
<input type="text" name="q">
<br><input type="submit" value="Google Search">
<form action="https://www.google.com/doodles">
<input type="submit" value="I'm feeling lucky">
</form>
</form>
</body>
</html>