-
Notifications
You must be signed in to change notification settings - Fork 0
/
week09.html
60 lines (49 loc) · 2.41 KB
/
week09.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link type="text/css" rel="stylesheet" href="https://rus19023.github.io/myportfolio/css/styles.css" />
<title>Scripture Chase!</title>
</head>
<body>
<header id="autoheaderchallenge">auto header</header>
<main>
<section>
<h1>Scripture Chase!</h1>
<ul id="reflist"></ul>
<!--
<a target="_blank" href="https://icons8.com/icon/mwurhltzeFMF/select">Select</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
<a href="https://icons8.com/icon/86527/home">Home icon by Icons8</a>
<a href="https://icons8.com/icon/nRgy12QAqQ08/menu">Menu icon by Icons8</a>
<a target="_blank" href="https://icons8.com/icon/79404/flashcards">Flashcards</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
<a target="_blank" href="https://icons8.com/icon/MCKiTQeeXqmM/quiz">Quiz</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
-->
</section>
</main>
</body>
<script src="./js/scripturechase.js"></script>
<script src="./js/main.js" type="module"></script>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.6.7/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.6.7/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyDcizSvcECET3FTZXklbhtGugmaFijyibY",
authDomain: "scripture-chase-app.firebaseapp.com",
projectId: "scripture-chase-app",
storageBucket: "scripture-chase-app.appspot.com",
messagingSenderId: "778364816731",
appId: "1:778364816731:web:596ba674c3ec1d35d49e7e",
measurementId: "G-3BYL1QH9KP",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
</html>