-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
111 lines (88 loc) · 4.09 KB
/
contact.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html lang="en">
<head>
<title>Contact Us</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<!-- MDB -->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body style="background: #000;">
<style>
a.contactlink{
color: #01C9EB !important;
background-color: #fff;
}
</style>
<!-- Header -->
<!--Navigation bar-->
<div id="nav-placeholder">
</div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<!--end of Navigation bar-->
<div class="py-1" style="margin-top: 4rem;">
<div class="row mt-sm-5 py-sm-5 py-2 justify-content-center align-items-center aboutctahead text-center text-white ">
<div class="col-sm-7 mt-sm-0 mt-3">
<div class="contacttitle fontexo ">
<h1>Contact Us</h1>
<img class="w-50" src="img/stroke.png" alt="">
</div>
<div class="contactdetails">
<div class="phoneno my-4 spanorange wow animate__animated animate__backInLeft">
<i class="fa fa-phone text-white " style="font-size:2rem;" aria-hidden="true"></i> <span><b>+61 (0) 438 325 294</b> </span>
</div>
<div class="emailadd my-4 spanorange wow animate__animated animate__backInRight">
<i class="fa fa-envelope text-white" aria-hidden="true"style="font-size:2rem;"></i> <span><b>kent@uwinspection.com.au</b></span>
</div>
<div class="maploc my-4 spanorange wow animate__animated animate__backInLeft">
<i class="fa fa-map-marker text-white" aria-hidden="true"style="font-size:2rem;"></i> <span><b>35 Green St,
Doveton VIC 3177
Australia</b></span>
</div>
<style>
.phoneno,.emailadd,.maploc{
font-size: 1.2rem;
}
</style>
</div>
</div>
</div>
</div>
</div>
<div class="container my-3 py-3 contactcontent text-center text-white wow animate__animated animate__fadeInUp">
<p class="fontexo">Let us go where you can't and perform your underwater inspections for you - please contact us to discuss your underwater inspection requirements. Simply fill in the contact form, and we will make sure you hear from us as soon as possible.
</p>
</div>
<!--ContactForm-->
<div id="uwisform">
</div>
<script>
$(function(){
$("#uwisform").load("form.html");
});
</script>
<!--ContatForm---->
<!--Footer-->
<div id="footer-placeholder">
</div>
<script>
$(function(){
$("#footer-placeholder").load("footer.html");
});
</script>
<!--Footer-->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html