-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.html
93 lines (79 loc) · 4 KB
/
contact-us.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
83
84
85
86
87
88
89
90
91
92
93
<!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" />
<title>Holy Spirit Cathedral</title>
<!-- bootstrap css librabry -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous" />
<link rel="stylesheet" href="/css/main.css" />
<script src="https://unpkg.com/@phosphor-icons/web"></script>
</head>
<body>
<div class="partial-wrap container-fluid p-0">
<iframe onload="resizeIframe(this)" onclick="resizeIframe(this)" class="partial"
src="/partials/header.html"></iframe>
</div>
<div class="mt-5">
<div class="container">
<div class="p-lg-4 p-md-3 p-sm-2 p-1 py-5">
<div class="fs-4">
GET IN TOUCH
</div>
<form class="">
<div class="row g-5">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="mt-3">
<div class="form-group">
<label for="name">Your Name (required)</label>
<input type="text" class="form-control mt-1" id="name" aria-describedby="nameHelp"
placeholder="name">
</div>
<div class="form-group mt-5">
<label for="email">Your Email (required)</label>
<input type="email" class="form-control mt-1" id="email"
aria-describedby="emailHelp" placeholder="email">
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="mt-3">
<div class="form-group mt-3">
<label for="name">Your Message</label>
<textarea class="form-control mt-1" id="name" aria-describedby="emailHelp"
placeholder="name" rows="6">
</textarea>
</div>
<button type="submit" class="btn btn-primary mt-3 px-4">Send</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="bg-light">
<div class="container">
<div class="mx-auto mt-5 py-5">
<div class="fs-3 text-center">
Find us on Google Map
</div>
<iframe class="rounded border mt-4 image-fluid"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3971.0309184740768!2d-0.20923792589004991!3d5.56243563358678!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xfdf9a0abd1c4543%3A0x928c251d492b1ae8!2sHoly%20Spirit%20Cathedral!5e0!3m2!1sen!2sgh!4v1681078198222!5m2!1sen!2sgh"
width="100%" height="250" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</div>
</div>
<div class="partial-wrap p-0 bg-hsc-red">
<iframe onload="resizeIframe(this)" class="partial" src="/partials/footer.html"></iframe>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<script src="/js/partials.js"></script>
</body>
</html>