-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.83 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 1.83 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
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="@code.architects">
<title>Google UI Clone</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<div class="container">
<header class="header">
<ul class="links">
<li class="headericon">Images</li>
<li class="headericon">
<img src="https://picsum.photos/32/32" class="profilepic" />
</li>
</ul>
</header>
<main class="searchcontainer">
<img src="./img/google_logo.png" class="logo" />
<form onsubmit="return false" id="searchform">
<input type="search" class="search" placeholder="Search something..." />
<div class="searchbtncontainer">
<button type="submit">Google Search</button>
<button onclick="alert('Created by @code.architects')" type="reset">I'm feeling lucky</button>
</div>
</form>
<div class="langoffer">
<span>Languages Offered -</span>
<a href="#">हिन्दी</a>
<a href="#">বাংলা</a>
<a href="#">ગુજરાતી</a>
<a href="#">ਪੰਜਾਬੀ</a>
<a href="#">मराठी</a>
</div>
</main>
<footer class="footer">
<ul class="links">
<li class="link">Advertising</li>
<li class="link">Business</li>
<li class="link">About</li>
</ul>
</footer>
</div>
<script src="./script/main.js"></script>
</body>
</html>