-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBranches.html
More file actions
93 lines (75 loc) · 2.9 KB
/
Branches.html
File metadata and controls
93 lines (75 loc) · 2.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-commerce</title>
<link rel="shortcut icon" href="./image/design/logo.png" type="image/x-icon">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<section id="header">
<a href="index.html"><img src="image/design/mithra-logo.png" alt="Mithra Logo" class="logo"></a>
<nav>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a class="active" href="branches.html">Where to buy</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li id="lg-bag"><a href=""><i class="fa fa-shopping-bag"></i></a></li>
<a href="#" id="close"><i class="far fa-times"></i></a>
</ul>
</nav>
<div id="mobile">
<a href="cart.html"><i class="far fa-shopping-bag"></i></a>
<i id="bar" class="fas fa-outdent"></i>
</div>
</section>
<!--Page-Header-->
<section id="page-header-1" class="about-header">
<h2 ><strong> Wherever you are, a Mithra dealer isn’t far...</strong></h2>
</section>
<!--Page-Header Ends-->
<!--Box Layout-->
<section id="box" class="about-box">
<div class="container">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
<div class="box">Box 3</div>
<div class="box">Box 4</div>
<div class="box">Box 5</div>
<div class="box">Box 6</div>
<div class="box">Box 7</div>
<div class="box">Box 8</div>
<div class="box">Box 9</div>
</div>
</section>
<!--Box Layout Ends-->
<!-- footer -->
<footer>
<section id="newsletter" >
<div class="newstext">
<h4>Sign Up Fro Newsletters</h4>
<p>Get E-mail update about our latest shop and <span>special offers.</span></p>
</div>
<div class="form">
<input type="text" placeholder="Your email address">
<button>Sign Up</button>
</div>
<div class="copyright">
<p>©2025 Copyright</p>
</div>
<div class="footer-social">
<a href="https://facebook.com" target="_blank" title="Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="https://instagram.com" target="_blank" title="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://twitter.com" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://wa.me/" target="_blank" title="WhatsApp"><i class="fab fa-whatsapp"></i></a>
<a href="mailto:info@mithra.com" title="Email"><i class="far fa-envelope"></i></a>
</div>
</section>
</footer>
</body>
</html>