-
Notifications
You must be signed in to change notification settings - Fork 3
/
navbar.html
37 lines (36 loc) · 1.19 KB
/
navbar.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
<!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>Navbar</title>
<link rel="stylesheet" href="navbar.css">
</head>
<body>
<div id="navbar">
<div >
<img onclick="homePage()" class="wth" src="https://upload.wikimedia.org/wikipedia/commons/b/bc/Myntra_Logo.png" alt="logo">
</div>
<div id="products_page">
<div>MEN</div>
<div>WOMEN</div>
<div>KIDS</div>
<div>HOME & LIVING</div>
</div>
<div>
<input type="text" name="search" id="search-bar" placeholder="Search for products, brands & more">
</div>
<div id="login_Status">
</div>
</div>
<div id="invite">
<div><img src="https://constant.myntassets.com/pwa/assets/img/rupee_illustration.png" alt="">
</div>
<div><p>Invite friends to Myntra's EORS & get up to ₹150 MynCash for every person who visits</p>
</div>
<button>Invite Now ></button>
</div>
</body>
</html>
<script src="navbar.js"></script>