-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<style>.button {font-size: 20px;} </style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/11.0.1/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/11.0.1/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: "AIzaSyD1Ix8DowrZqf-UFPe09GuLNZ6umdD30_0",
authDomain: "dmod-manager.firebaseapp.com",
projectId: "dmod-manager",
storageBucket: "dmod-manager.appspot.com",
messagingSenderId: "145303868233",
appId: "1:145303868233:web:6c3297584f2234b3290098",
measurementId: "G-GRF5QNS186"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
<link rel="stylesheet" href="style.css">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<h1 style="font-size:5vw"> This is A Large Heading </h1>
<a href="signup.html">
<button class="button">Page 2</button>
</a>
<p>This is a paragraph.</p>
</body>
</html>