forked from theabhishekmaurya/tata-cliq-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
other_navbar.html
35 lines (35 loc) · 1018 Bytes
/
other_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
<!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" />
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="othernav.css">
<title>Online Shopping Site for Electronic Products, Lifestyle, Beauty & Home - Tata CLiQ</title>
</head>
<body>
<div id="othernav">
<div>
<div>
<img src="tatacliq icon.png" />
</div>
<div>
<div >
<div id="my_account">
<i class="fas fa-2x fa-user-circle"></i> <i
class="fas fa-angle-down"
id="account_angle_down"
></i>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
document.querySelector("#my_account").addEventListener("click",function(){
window.location.href="myaccount.html";
})
</script>