-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.js
More file actions
32 lines (30 loc) · 950 Bytes
/
Copy pathindex.js
File metadata and controls
32 lines (30 loc) · 950 Bytes
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
var header = document.getElementsByTagName("header")[0];
var footer = document.getElementsByTagName("footer")[0];
footer.innerHTML = `
<div class="column quick-links">
<h3>QUICK LINKS</h3>
<p><a href="menu.html">Menu</a></p><p><a href="gallery.html">Gallery</a></p>
<p><a href="contactus.html">Contact us</a></p>
</div>
<div class="column location">
<h3>LOCATION</h3>
<p>A-239 Ground Floor, Kaushambi, Gaziabad, Uttar Pradesh 201012</p>
<p>9650701892</p>
</div>
<div class="column socials">
<h3>SOCIALS</h3>
<div class="flex">
<div class="icon">
<img src="/src/images/social_icons/instagram_icon.png" alt="" />
</div>
<div class="icon">
<img src="/src/images/social_icons/whatsapp_icon.png" alt="" />
</div>
<div class="icon">
<img src="/src/images/social_icons/facebook_icon.png" alt="" />
</div>
</div>
</div>`;
function dashboard() {
window.loacation.href = "sellerDashboard.html";
}