-
-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathindex.html
167 lines (160 loc) · 4.28 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!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 Clone</title>
<link rel="icon" href="./img/favicon.jpg" />
<link rel="stylesheet" href="./style.css" />
<script
src="https://kit.fontawesome.com/b9c4b4d385.js"
crossorigin="anonymous"
></script>
<script defer src="./main.js"></script>
</head>
<body>
<!--Header-->
<header>
<nav class="navbar">
<ul>
<li>
<a class="link" href="">Gmail</a>
</li>
<li>
<a class="link" href="">Images</a>
</li>
<li>
<div class="circle-shadow">
<a class="menu-icon" href=""><i class="fas fa-bars"></i></a>
</div>
</li>
<li>
<div class="circle-shadow">
<a class="user-icon" href=""><span>P</span></a>
</div>
</li>
</ul>
</nav>
</header>
<!--Content-->
<section class="content-section">
<div class="content-wrapper">
<img class="logo-img" src="./img/logo.jpg" alt="Google Logo Image" />
<div class="search-bar">
<i class="fas fa-search"></i>
<input
id="search-input"
class="search-input"
type="text"
placeholder="Search Google or type a URL"
/>
<i class="fas fa-microphone"></i>
</div>
<div class="search-btns">
<button class="google-search-btn" id="search">Google Search</button>
<button class="lucky-search-btn">I'm Feeling Lucky</button>
</div>
<div class="language">
<p>Google Offered in: <a href="">Hindi</a></p>
</div>
<!--Bookmarks-->
<ul class="bookmark">
<li>
<a href="https://www.youtube.com">
<i
class="fa-brands fa-youtube"
style="
color: red;
display: flex;
align-items: center;
justify-content: center;
"
></i>
<br />
Youtube
</a>
</li>
<li>
<a href="https://www.twitter.com">
<i
class="fa-brands fa-twitter"
style="
color: #00acee;
display: flex;
align-items: center;
justify-content: center;
"
></i>
<br />
Twitter
</a>
</li>
<li>
<a href="https://www.linkedin.com">
<i
class="fa-brands fa-linkedin-in"
style="
color: #0e76a8;
display: flex;
align-items: center;
justify-content: center;
"
></i>
<br />
LinkedIn
</a>
</li>
<li>
<a href="#">
<i
class="fa-solid fa-plus"
style="
color: black;
display: flex;
align-items: center;
justify-content: center;
"
></i>
<br />
Add Shortcut
</a>
</li>
</ul>
</div>
</section>
<!--Footer-->
<footer>
<div class="footer-content upper-footer">
<p>India</p>
</div>
<div class="footer-content lower-footer">
<ul class="lower-left-footer">
<li>
<a href="">About</a>
</li>
<li>
<a href="">Advertising</a>
</li>
<li>
<a href="">Business</a>
</li>
<li>
<a href="">How Search Works</a>
</li>
</ul>
<ul class="lower-right-footer">
<li>
<a href="">Privacy</a>
</li>
<li>
<a href="">Terms</a>
</li>
<li>
<a href="">Settings</a>
</li>
</ul>
</div>
</footer>
</body>
</html>