-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.43 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
72
73
<!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="styles/normalize.css">
<link rel="stylesheet" href="styles/style.css">
<title>Google</title>
</head>
<body>
<div class="header">
<nav class="nav">
<ul>
<li>
<a href="#">Gmail</a>
</li>
<li>
<a href="#">Images</a>
</li>
<li>
<a href="#">
<img class="app-icon" src="images/iconfinder_apps_326511.png" alt="apps icon">
</a>
</li>
<li>
<a href="#">
<img class="profile-pic" src="images/profile_pic.jpeg" alt="Ahmed Mikkawe's Profile Picture">
</a>
</li>
</ul>
</nav>
</div>
<div class="main">
<div class="pic-container">
<img src="images/google_logo.png" alt="google logo" class="google-logo">
</div>
<div class="form-container">
<form method="" action="">
<div class="search-bar">
<img src="images/iconfinder_search_326690.png" alt="search-icon" class="search-icon">
<input type="text" class="search">
<img src="images/iconfinder_mic-microphone-record-speak_2205213.png" alt="microphone-icon" class="microphone-icon">
</div>
<div class="buttons-container">
<input type="button" value="Google Search">
<input type="button" value="I'm Feeling Lucky">
</div>
</form>
</div>
<div class="lang">
<p>Google offered in: <span>العربية</span></p>
</div>
</div>
<div class="footer">
<div class="country">
<span>Egypt</span>
</div>
<div class="bot-nav">
<div class="left">
<span>Advertising</span>
<span>Business</span>
<span>About</span>
<span>How Search Works</span>
</div>
<div class="right">
<span>Privacy</span>
<span>Terms</span>
<span>Settings</span>
</div>
</div>
</div>
</body>
</html>