This repository was archived by the owner on May 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
47 lines (41 loc) · 2.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://cdn-icons-png.flaticon.com/512/2504/2504914.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
</head>
<body>
<nav>
<a href="#">Gmail</a>
<a href="#">Images</a>
<a href=""><span class="material-symbols-outlined">apps</span></a>
<a href="#">Sign In</a>
</nav>
<div class="container">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo"
class="logo">
<div class="searchbox">
<span class="material-symbols-outlined">search</span>
<input type="text" class="input" onkeydown="if(event.keyCode==13){performSearch();return false;}">
<img src="https://i.ibb.co/Dw5p31g/google-voice.png" alt="Mic icon" height="25px">
<img src="https://th.bing.com/th/id/OIP.0qiiRITe0DLrcEODODM7AQHaFv?pid=ImgDet&rs=1" alt="Google Lens icon"
height="25px">
</div>
<div class="btn">
<a href="#" class="search-button" onclick="performSearch()">Google Search</a>
<a href="#" class="lucky">I'm Feeling Lucky</a>
</div>
<p>
Google offered in: <a href="#">हिन्दी</a> <a href="#">বাংলা</a> <a href="#">తెలుగు</a> <a href="#">मराठी</a>
<a href="#">தமிழ்</a> <a href="#">ગુજરાતી</a> <a href="#">ಕನ್ನಡ</a> <a href="#">മലയാളം</a> <a
href="#">ਪੰਜਾਬੀ</a>
</p>
</div>
<script src="script.js"></script>
</body>
</html>