-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (33 loc) · 1.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>St Mary's Wedding Fee Calculator</title>
</head>
<body>
<h1>St Mary's Wedding Fee Calculator</h1>
<p>This tool is intended to calculate an estimated fee for a wedding. You should always make sure you calculate the cost using the latest fees and charges.</p>
<p><small>This is using the <b>January 2025</b> fees and charges.</small></p>
<h2>Optional Extras</h2>
<h3>Building</h3>
<ul>
<li><input type="checkbox" id="extraBells"> <label for="extraBells">Bells</label></li>
</ul>
<h3>Music</h3>
<ul>
<li><input type="checkbox" id="extraChoir"> <label for="extraChoir">Choir</label></li>
<li><input type="checkbox" id="extraSoloist"> <label for="extraSoloist">Soloist</label></li>
</ul>
<h3>Video</h3>
<ul>
<li><input type="checkbox" id="extraOwnVideo"> <label for="extraOwnVideo">Permission to record <i>with own videographer</i></label></li>
<li><input type="checkbox" id="extraInHouseVideo"> <label for="extraInHouseVideo">Streaming of service</label></li>
</ul>
<h2>Total Cost</h2>
<button onclick="calculateCost()">Calculate total</button>
<p><b><span id="total"></span></b></p>
<h3 id="includesHeader" hidden>This fee includes</h3>
<div id="includesList"></div>
<script src="fee-calculator.js"></script>
</body>
</html>