-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.88 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Slide Builder</title>
<!-- <script src="https://kit.fontawesome.com/bdc6025de3.js"></script> -->
<link
href="https://fonts.googleapis.com/css?family=Monoton|Montserrat:400,700|Neucha|Open+Sans:400,700|Roboto+Mono:400,700|Roboto+Slab:400,700|Roboto:400,700|Shadows+Into+Light&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/modal.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app"></div>
<!-- Adding firebase CDN -->
<script src="https://www.gstatic.com/firebasejs/6.2.4/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.2.4/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.2.4/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.2.4/firebase-auth.js"></script>
<script src="./js/config/firebase-config.js"></script>
<script src="./js/src/Notification.js"></script>
<script src="./js/src/Loading.js"></script>
<script src="./js/src/eventHandlers.js"></script>
<script src="./js/src/constant.js"></script>
<script src="./js/src/util.js"></script>
<script src="./js/src/Element.js"></script>
<script src="./js/src/Slide.js"></script>
<script src="./js/src/Header.js"></script>
<script src="./js/src/Modal.js"></script>
<script src="./js/src/PresentationMode.js"></script>
<script src="./js/src/SlideBuillder.js"></script>
<script src="./js//src/LandingPage.js"></script>
<script src="./js/App.js"></script>
</body>
</html>