-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (97 loc) · 3.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="style.css" />
<title>Problem0 Google Search</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<ul class="col google-like">
<li><a href="image_search.html">Image Search</a></li>
<li><a href="advanced_search.html">Advanced Search</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-2">
<!-- One of three columns -->
</div>
<div class="col-sm-8">
<h1 id="theDoodle">
<span class="blue_letter">G</span><span class="red_letter">o</span
><span class="yellow_letter">o</span
><span class="blue_letter">g</span
><span class="green_letter">l</span
><span class="red_letter">e</span>
</h1>
<form action="https://google.com/search">
<div class="form-group" style="text-align: center">
<div class="input-group">
<div class="input-group-prepend" id="looking-glass">
<span class="input-group-text bg-transparent"
><i class="bi-search"></i
></span>
</div>
<input
type="text"
aria-label="from"
class="form-control border-left-0"
id="input-search"
placeholder="Google Search ..."
name="q"
required
/>
<i id="myKeyboard" class="bi bi-keyboard"></i>
<i id="myMic" class="bi bi-mic"></i>
<i id="myCamera" class="bi bi-camera"></i>
</div>
</div>
<div class="form-group" style="text-align: center">
<input
type="submit"
class="btn btn-light"
value="Google Search"
id="button-submit"
/>
<button type="submit" class="btn btn-light" name="btnI" value="1">
I'm Feeling Lucky!
</button>
</div>
</form>
</div>
<div class="col-sm-2"></div>
</div>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
</body>
</html>