-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.71 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
<!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</title>
<link rel="stylesheet" href="Google.css">
</head>
<body>
<div class="header">
<div class="links">
<a href="Image_search.html" id="link">Image search</a>
<a href="Advance_search.html" id="link">Advanced search</a>
</div>
</div>
<div class="search">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
<form action="https://www.google.com/search">
<input type="text" name="q" class="search_box">
<div class="buttons">
<button type="submit">Google Search</button>
<button type="submit" name="btnI">I'm Feeling Lucky</button>
</div>
<div class="language">Google offered in: <a href="#">English</a></div>
</form>
</div>
<div class="for_adjusting_the_position"></div>
<div class="footer">
<div class="top">Country</div>
<div class="line"></div>
<div class="bottom">
<div class="left_links">
<a href="#" id="link">About</a>
<a href="#" id="link">Advertising</a>
<a href="#" id="link">Business</a>
<a href="#" id="link">How Search works</a>
</div>
<div class="right_links">
<a href="#" id="link">Privacy</a>
<a href="#" id="link">Terms</a>
<a href="#" id="link">Settings</a>
</div>
</div>
</div>
</body>
</html>