-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (129 loc) · 4.48 KB
/
Copy pathindex.html
File metadata and controls
140 lines (129 loc) · 4.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>PetStore - because Pets love pampering</title>
<meta charset="UTF-8">
<meta name="description" content="PetStore">
<meta name="keywords" content="PetStore, eCommerce, pet products">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link href="img/favicon.ico" rel="shortcut icon"/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<!-- Header section -->
<header class="header-section">
<div class="container-fluid">
<!-- logo -->
<div class="site-logo">
PetStore
</div>
<!-- responsive -->
<div class="nav-switch">
<i class="fa fa-bars"></i>
</div>
<div class="header-right">
<a href="#cart" class="card-bag"><img src="img/icons/bag.png" alt=""><span>2</span></a>
</div>
<!-- site menu -->
<ul class="main-menu">
<li><a href="#">Home</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
</header>
<!-- Header section end -->
<main id='microfrontend'>
</main>
<!-- Footer top section -->
<section class="footer-top-section home-footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-8 col-sm-12">
<div class="footer-widget about-widget">
PetStore
<p>Donec vitae purus nunc. Morbi faucibus erat sit amet congue mattis. Nullam fringilla faucibus urna, id dapibus erat iaculis ut. Integer ac sem.</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-6">
<div class="footer-widget">
<h6 class="fw-title">usefull Links</h6>
<ul>
<li><a href="#">Partners</a></li>
<li><a href="#">Bloggers</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Press</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-6">
<div class="footer-widget">
<h6 class="fw-title">Sitemap</h6>
<ul>
<li><a href="#">Partners</a></li>
<li><a href="#">Bloggers</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Press</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-6">
<div class="footer-widget">
<h6 class="fw-title">Shipping & returns</h6>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Track Orders</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-4 col-sm-6">
<div class="footer-widget">
<h6 class="fw-title">Contact</h6>
<div class="text-box">
<p>Your Company Ltd </p>
<p>1481 Creekside Lane Avila Beach, CA 93424, </p>
<p>+53 345 7953 32453</p>
<p>office@youremail.com</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer top section end -->
<!-- Footer section -->
<footer class="footer-section">
<div class="container">
<p class="copyright">
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="fa fa-heart-o" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</p>
</div>
</footer>
<!-- Footer section end -->
<!--====== Javascripts & Jquery ======-->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="frontends/MicroFrontend.js"></script>
<script src="frontends/Home.js"></script>
<script src="frontends/Cart.js"></script>
<script src="frontends/Checkout.js"></script>
<script src="frontends/Product.js"></script>
<script src="frontends/Contact.js"></script>
<script src="routes.js"></script>
<script src="renderMicroFrontend.js"></script>
</body>
</html>