-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.js
50 lines (49 loc) · 1.53 KB
/
footer.js
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
const footerHTML = `
<footer class="section-footer">
<div class="footer-container container">
<div class="content_1">
<img src="./images/logo.png" alt="logo" />
<p>
Welcome to Thapa EcomStore, <br />
your ultimate destination for
<br />
cutting-edge gadgets!
</p>
<img src="https://i.postimg.cc/Nj9dgJ98/cards.png" alt="cards" />
</div>
<div class="content_2">
<h4>SHOPPING</h4>
<a href="#">Computer Store</a>
<a href="#">Laptop Store</a>
<a href="#">Accessories</a>
<a href="#">Sales & Discount</a>
</div>
<div class="content_3">
<h4>Experience</h4>
<a href="./contact.html">Contact Us</a>
<a href="" target="_blank"> Payment Method </a>
<a href="" target="_blank"> Delivery </a>
<a href="" target="_blank"> Return and Exchange </a>
</div>
<div class="content_4">
<h4>NEWSLETTER</h4>
<p>
Be the first to know about new
<br />
arrivals, sales & promos!
</p>
<div class="f-mail">
<input type="email" placeholder="Your Email" />
<i class="bx bx-envelope"></i>
</div>
<hr />
</div>
</div>
<div class="f-design">
<div class="f-design-txt">
<p>© 2024 THAPA STORE. All Rights Reserved. </p>
</div>
</div>
</footer>`;
const footerElem = document.querySelector(".section-footer");
footerElem.insertAdjacentHTML("afterbegin", footerHTML);