-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
50 lines (39 loc) · 1.79 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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>FrontendCafe Store</title>
<link rel="shortcut icon" type="image/jpg" href="images/logo.png" />
<link rel="preload" as="image" href="images/coffee-top.webp" />
<link rel="preload" as="image" href="images/wave1.png" />
<link rel="preload" as="image" href="images/wave2.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#330e00" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<header id="header" class="header"></header>
<nav id="menuMobile" class="menuMobile"></nav>
<section id="totals" class="totals"></section>
<section id="landing" class="landing"></section>
<main id="content"></main>
<script type="module" src="/js/main.js"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.4.1/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.3.1/firebase-firestore.js"></script>
<!-- For host -->
<script src="/__/firebase/init.js"></script>
<!-- For local -->
<script type="text/javascript" src="/config.js"></script>
</body>
</html>