-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Fake Google</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li id="gmail">
<a href="">Gmail</a>
</li>
<li id="images">
<a href="">Images</a>
</li>
<li id="Apps">
<a href="" ><img src="images/apps_icon.png" alt=""></a>
</li>
<li >
<a href="" id="sign-in">Sign in</a>
</li>
</ul>
</nav>
</header>
<section id="center-section">
<div id="logo">
<img src="images/googlelogo.png" alt="Google">
</div>
<div id="search-box">
<img src="images/search_48px.svg.png" alt="" width="20px" height="20px" id="search-icon">
<input type="search" name="" id="">
<img src="images/Google_mic.svg.png" alt="" id="voice-icon">
</div>
<div id="buttons">
<input type="submit" value="Google Search">
<input type="submit" value="I'm feeling lucky">
</div>
<div id="languages">
Google offered in:
<span>
<a href="">हिन्दी</a>
<a href="">বাংলা</a>
<a href="">తెలుగు</a>
<a href="">मराठी</a>
<a href="">தமிழ்</a>
<a href="">ગુજરાતી</a>
<a href="">ಕನ್ನಡ</a>
<a href="">മലയാളം</a>
<a href="">ਪੰਜਾਬੀ</a>
</span>
</div>
</section>
<footer>
<div id="country">India</div>
<div id="down">
<div class="float-left">
<a href="">Advertising</a>
<a href="">Business</a>
<a href="">About</a>
<a href="">How search works</a>
</div>
<div class="float-right">
<a href="">Privacy</a>
<a href="">Terms</a>
<a href="">Settings</a>
</div>
</div>
</footer>
</body>
</html>