-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.06 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
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="css/index.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body>
<div class="d-grid gap-2 d-md-flex justify-content-md-end m-4">
<a href="imgSearch.html" class="btn btn-primary me-md-2">Image Search</a>
<a href="globalSearch.html" class="btn btn-primary">Global Search</a>
</div>
<img src="img/google.png" alt="google" class="mx-auto d-block" />
<form action="https://google.com/search">
<div class="mb-3 d-flex justify-content-center">
<input
type="text"
name="q"
class="form-control w-50"
placeholder="Search"
/>
</div>
<div class="col-1 mx-auto">
<input type="submit" value="Search" class="btn btn-primary" />
</div>
</form>
</body>
</html>