-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle.html
60 lines (50 loc) · 1.42 KB
/
google.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="google_style.css">
<title> Google</title>
</head>
<body>
<div class="header">
<a href="#">Gmail</a>
<a href="#">Images</a>
<button>Sign in</button>
</div>
<div class="main">
<div class="logo-img">
<img src="g.png">
</div>
<div class="search-box">
<input type="text" name="txtname" placeholder="Search or enter URL">
</div>
<div class="btn">
<button>Google Search</button>
<button>I'm feeling lucky</button>
</div>
<div class="langs">
<label>Google offered In</label>
<a href="**">English</a>
<a href="**">French</a>
<a href="**">Chinese</a>
<a href="**">Hindu</a>
</div>
</div>
<div class="footer">
<div class="country">
<span>Uganda</span>
</div>
<div class="footer-links">
<div class="footer-left">
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">About</a>
</div>
<div class="footer-right">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</div>
</div>
</body>
</html>