-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbill.html
More file actions
75 lines (63 loc) · 3.01 KB
/
Copy pathbill.html
File metadata and controls
75 lines (63 loc) · 3.01 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
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
<!DOCTYPE html>
<html>
<head>
<title>Bill - Bill Death Index</title>
<link rel="icon" href="images/no-results.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<link rel="stylesheet" type="text/css" href="css/bill.css">
</head>
<body>
<nav>
<a href="index.html" class="logo"><h1>Bill Death Index</h1></a>
<a href="browse.html?entity=state_ny"><p>New York State</p></a>
<a href="faq.html" class="faq"><p>FAQ</p></a>
</nav>
<div id="main-content">
<div id="controls">
<img width=100>
<h2></h2>
<div class="options">
<button class="return" type="button">🠔 Go Back</button>
</div>
</div>
<div id="bill">
<h1 class="bill-result-title"></h1>
<ul class="bill-result-descriptors">
<li class="bill-result-printno"><p></p></li>
<li class="bill-result-deathlevel"><p></p></li>
<li class="bill-result-year"><p></p></li>
</ul>
<div class="bill-result-textparent">
<pre class="bill-result-text"></pre>
</div>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.1/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use https://firebase.google.com/docs/web/setup#available-libraries -->
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyDwq2DQjL9-4DptwleDMeSMKOSosCtFgJ0",
authDomain: "bill-death-index.firebaseapp.com",
databaseURL: "https://bill-death-index-default-rtdb.firebaseio.com",
projectId: "bill-death-index",
storageBucket: "bill-death-index.appspot.com",
messagingSenderId: "832565078227",
appId: "1:832565078227:web:95c120b59faa9a9efb8c26"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
var database = firebase.database();
</script>
<script src="js/utils.js"></script>
<script src="js/browse.js"></script>
<script src="js/bill.js"></script>
</html>