-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (78 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
<!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="styles/style.css" />
</head>
<body>
<nav class="nav">
<a href="#" id="gmail">Gmail</a>
<a href="#" id="images">Images</a>
<button class="Google-apps" href="#"></button>
<!-- here lies the email avatar of the google's page -->
<a class="email-avatar">
<img
src="images/avatar.jpeg"
alt="this is a email avatar"
id="avatar"
/>
</a>
</nav>
<main class="main-content">
<img
class="image-logo"
src="images/google-logo.png"
alt="here lies the google logo"
/>
<div class="searchbar">
<img src="images/google-search.png" class="search-logo" alt="" />
<input type="text" class="search-text" />
<button class="mic">
<img src="images/google-mic.png" class="mic-button" />
</button>
</div>
<div class="search-buttons">
<button class="Google-search">Google Search</button>
<button class="lucky">I'm Feeling Lucky</button>
</div>
<div class="languages">
<div class="lang-text">Google offered in:</div>
<ul>
<div class="list">
<div class="section-1">
<li><a class="resp-purp" href="">हिन्दी</a></li>
<li><a class="resp-purp" href="">বাংলা</a></li>
<li><a class="resp-purp" href="">తెలుగు</a></li>
<li><a class="resp-purp" href="">मराठी</a></li>
<li><a class="resp-purp" href="">தமிழ்</a></li>
<li><a class="resp-purp" href="">ગુજરાતી</a></li>
</div>
<div class="section-2">
<li><a class="resp-purp-1" href="">ಕನ್ನಡ</a></li>
<li><a class="resp-purp-1" href="">മലയാളം</a></li>
<li><a class="resp-purp-1" href="">ਪੰਜਾਬੀ</a></li>
</div>
</div>
</ul>
</div>
</main>
<footer class="footer">
<div class="left-section">
<a class="footer-link" href="#">Advertising</a>
<a class="footer-link" href="#">Business</a>
<a class="footer-link" href="#">About</a>
<a class="footer-link" href="#">How Search works</a>
</div>
<div class="right-section">
<a class="footer-link" href="#">Privacy</a>
<a class="footer-link" href="#">Terms</a>
<a class="footer-link" href="#">Settings</a>
</div>
<!--hai-->
</footer>
<script src="scripts/script.js"></script>
</body>
</html>