-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (37 loc) · 1.57 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
<!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">
<title>Google Search Clone -Isaac</title>
<link rel="stylesheet" href="./css/index.css"/>
<link rel="stylesheet" href="./css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<!DOCTYPE html>
<html>
<header>
<ul>
<li><a href="./advancedsearch.html">Advanced Search</a></li>
<li><a href="./googleimages.html">Images</a></li>
</ul>
</header>
<div class="container">
<div class="logo">
<img alt="Google" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
</div>
<form action="https://www.google.com/search">
<div class="bar">
<i class="fa fa-search sch-btn" title="Search Button"></i>
<input class="searchbar" type="text" title="Search" name="q">
<a href="#"> <img class="voice" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Google_mic.svg/716px-Google_mic.svg.png" title="Search by Voice"></a>
</div>
<div class="buttons">
<button class="button" type="submit" value="Google Search" style="color: white;">Google Search</button>
<input type="submit" name="btnI" value="I'm Feeling Lucky" class="button" style="color:white;" formaction="https://google.com/search?&btnI=1">
</div>
</form>
</div>
</body>
</html>