-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (71 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Google Home Page</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="nav">
<a class="nav-link" href="#">Gmail</a>
<a class="nav-link" href="#">Images</a>
<img
id="grid-icon"
src="https://cdn1.iconfinder.com/data/icons/material-core/16/apps-512.png"
/>
<img
id="profile-pic"
src="https://avatars2.githubusercontent.com/u/22233490?v=4"
/>
</div>
<div class="main">
<div class="top-half">
<img
id="logo"
src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"
/>
<div id="input-container">
<img
id="search-icon"
src="https://static.thenounproject.com/png/14173-200.png"
/>
<input id="input" />
<img
id="right-icon"
src="http://www.gstatic.com/inputtools/images/tia.png"
/>
<img
id="right-icon"
src="http://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png"
/>
</div>
<div id="button-container">
<button>Google Search</button>
<button>I'm Feeling Lucky</button>
</div>
</div>
</div>
<div class="footer">
<div class="footer-half">
<span id="footer-text">
Turkey
</span>
</div>
<div class="footer-half" id="bottom-footer">
<div>
<a href="#" id="footer-text"> Advertising </a
><a href="#" id="footer-text"> Business </a
><a href="#" id="footer-text"> About </a
><a href="#" id="footer-text">How Search works </a>
</div>
<div>
<a href="#" id="footer-text"> Privacy </a
><a href="#" id="footer-text"> Terms </a
><a href="#" id="footer-text">Settings </a>
</div>
</div>
</div>
</body>
</html>