-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
59 lines (56 loc) · 1.89 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
<!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="./style.css">
</head>
<body>
<header>
<div class="box box1">
<a href="#">About</a>
<a href="#">Store</a>
</div>
<div class="box box2">
<a href="#">Gmail</a>
<a href="#">Images</a>
<img class="image" src="./images/appicon.png" alt="">
<a class="signin" href="#" style="color: white;"><span>Sign In</span></a>
</div>
</header>
<section>
<img src="./images/google_PNG102344.png" alt="" id="google">
<div class="main">
<img src="./images/magnifying_glass.jpg" alt="" id="search">
<input type="text" class="searchbar">
<img src="./images/google_microphone.png" alt="" id="mic">
</div>
<div class="button">
<button><a href="#">Google Search</a></button>
<button><a href="https://www.google.com/doodles">I'm Feeling Lucky</a></button>
</div>
<div class="language">
<p>Other Languages you can use Google: <a href="#">Turkish</a></p>
</div>
</section>
<footer>
<div class="mainfooter">
<div id="country">Turkey</div>
<div class="linkdiv">
<div class="left">
<a href="#" class="leftfootlinks">Advertising</a>
<a href="#" class="leftfootlinks">Business</a>
<a href="#" class="leftfootlinks">How Search Work</a>
</div>
<div class="right">
<a href="#" class="rightfootlinks">Settings</a>
<a href="#" class="rightfootlinks">Terms</a>
<a href="#" class="rightfootlinks">Privacy</a>
</div>
</div>
</div>
</footer>
</body>
</html>