forked from dosandk/online-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·41 lines (36 loc) · 1.41 KB
/
index.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
36
37
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Online Store</title>
<!-- font-family Montserrat -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="./styles.css" />
<link rel="stylesheet" href="./src/card/card-style.css" />
<link rel="stylesheet" href="./src/modal/modal-style.css" />
<link rel="stylesheet" href="./src/cart/cart-style.css" />
<link rel="stylesheet" href="./src/modal/modal-style.css" />
<link rel="stylesheet" href="./src/side-bar/side-bar-style.css" />
<link rel="stylesheet" href="./src/filters-list/filter-list-style.css" />
<link rel="stylesheet" href="./src/cards-list/card-list-style.css" />
<link rel="stylesheet" href="./src/pagination/pagination-style.css" />
<link rel="stylesheet" href="./src/search/search-style.css" />
<link rel="stylesheet" href="./src/double-slider/double-slider-style.css" />
</head>
<body>
<div id="root"></div>
<script type="module">
import Page from "./index.js";
const { BACKEND_URL } = window[Symbol.for("app-config")];
const page = new Page(BACKEND_URL);
root.append(page.element);
</script>
</body>
</html>