-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (51 loc) · 1.99 KB
/
index.html
File metadata and controls
60 lines (51 loc) · 1.99 KB
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
<!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">
<link rel="stylesheet" href="style.css">
<title>Google Clone</title>
</head>
<body>
</body>
</html>
<body>
<div class="head">
<ul class="left">
<li><a href="https://www.google.com/intl/en/about/">About</a></li>
<li><a href="https://store.google.com">Store</a></li>
</ul>
<ul class=right>
<li><a href="https://mail.google.com">Gmail</a></li>
<li><a href="https://images.google.com">Images</a></li>
<li><a href="https://accounts.google.com/ServiceLogin?hl=en-gb" class="btn" id="btn-blue">Sign in</a></li>
</ul>
</div>
<main>
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" id="logo" />
<form>
<div class="searchbar">
<input type="text" name="search" id="search">
</div>
<img id="voice" src="https://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png" />
<div class="buttons">
<button type="submit" class="btn" value="search">Google Search</button>
<button type="submit" class="btn" value="lucky">I'm Feeling Lucky</button>
</div>
</form>
</main>
<footer>
<h3 class="footer-text">Google Clone Made By Tofazzol Wahid</h3>
<ul class="left">
<li><a href="https://ads.google.com">Advertising</a></li>
<li><a href="https://www.google.com/services/">Business</a></li>
</ul>
<ul class=right>
<li><a href="https://policies.google.com/privacy">Privacy</a></li>
<li><a href="https://policies.google.com/terms">Terms</a></li>
<li><a href="https://www.google.com/preferences">Settings</a></li>
</ul>
</footer>
</body>
</html>