-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (68 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Google</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="header-left">
<a href="#" class="google-option home">Web</a>
<a href="#" class="google-option">Image</a>
<a href="#" class="google-option">Video</a>
<a href="#" class="google-option">Maps</a>
<a href="#" class="google-option">News</a>
<a href="#" class="google-option">Shopping</a>
<a href="#" class="google-option">Mail</a>
<a href="#" class="google-option">
more
<img src="arrow.png" alt="more option" class="arrow" />
</a>
</div>
<div class="header-right">
<a href="#" class="google-option">iGoogle</a><span>|</span>
<a href="#" class="google-option">Search setting</a><span>|</span>
<a href="#" class="google-option">Sign in</a>
</div>
</div>
<div class="google-img">
<img src="google.jpg" alt="google logo" />
</div>
<div class="search-btn">
<div class="search">
<input type="text" class="search-box" />
</div>
<div class="advance-tools">
<a href="#" class="advance-tools-link">
Advance Search
</a>
<a href="#" class="advance-tools-link">
language Tools
</a>
</div>
</div>
<div class="btn-google">
<button class="google-search">Google search</button>
<button class="lucky">I'm Feeling Lucky</button>
</div>
<div class="new">
<p class="font-new">New!</p>
<p class="font">Explore the earth on 3D</p>
<p class="link"><a href="" class="google-map">Google-map</a></p>
</div>
<div class="link-end-page">
<a href="#" class="end-page-link">Advertising Programms</a>
<a href="#" class="end-page-link">Business Solutions</a>
<a href="#" class="end-page-link">About Google</a>
<a href="#" class="end-page-link">Go to Google Deutschland</a>
</div>
<div class="footer">
<div class="years">@2010-</div>
<a href="#" class="privacy">Privacy</a>
</div>
</div>
</body>
</html>