-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (66 loc) · 3.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Keep/Tasks Clone</title>
<meta name="description" content="Keep/Tasks Clone">
<meta name="author" content="Jerry Cheng">
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/images/Vue_and_Firebase.png">
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<!-- CSS -->
<link href="assets/css/styles.css" rel="stylesheet">
<!-- Other Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.css" rel="stylesheet">
<link href="assets/vendor/fontawesome-free-5.13.1-web/css/all.css" rel="stylesheet">
<link href="assets/vendor/WOW-master/css/libs/animate.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- Firebase -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.15.5/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/7.15.5/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.15.5/firebase-database.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyD-H2ILrYDJC1k1xfXiipoiXOA9ue9GV0U",
authDomain: "keep-and-tasks-clone.firebaseapp.com",
databaseURL: "https://keep-and-tasks-clone.firebaseio.com",
projectId: "keep-and-tasks-clone",
storageBucket: "keep-and-tasks-clone.appspot.com",
messagingSenderId: "558645412361",
appId: "1:558645412361:web:e426c94bd46e5e8374eed8",
measurementId: "G-J6Y6J2EZ50"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
var database = firebase.database();
</script>
</head>
<body>
<section>
<div id="app">
<notes></notes>
</div>
</section>
<!-- Vendor JS Files -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/WOW-master/dist/wow.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<!-- Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>