-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.32 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
42
43
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guitar Shop</title>
<link rel="icon" href="img/favicon.png" type="image/png">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div id="header"></div>
<div id="products"></div>
<div id="shopping"></div>
<div id="spinner"></div>
<div id="error"></div>
<!-- Constants and Utils -->
<script src="constants/root.js"></script>
<script src="utils/localStorageUtil.js"></script>
<!-- Header -->
<script src="components/Header/Header.js"></script>
<link rel="stylesheet" href="components/Header/Header.css">
<!-- Products -->
<script src="components/Products/Products.js"></script>
<link rel="stylesheet" href="components/Products/Products.css">
<!-- Shopping -->
<script src="components/Shopping/Shopping.js"></script>
<link rel="stylesheet" href="components/Shopping/Shopping.css">
<!-- Spinner -->
<script src="components/Spinner/Spinner.js"></script>
<link rel="stylesheet" href="components/Spinner/Spinner.css">
<!-- Error -->
<script src="components/Error/Error.js"></script>
<link rel="stylesheet" href="components/Error/Error.css">
<script src="index.js"></script>
</body>
</html>