-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.php
63 lines (53 loc) · 2.14 KB
/
contact-us.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Us - Shield Plus</title>
<link rel="stylesheet" type="text/css" href="./css/contact-us.css">
<script src="javascript/contact-us.js"></script>
</head>
<body>
<div class="main-container">
<?php include_once('inc/header1-1.php'); ?>
<div class="contact-details">
<div class = "c1">
<h1>Contact Shield Plus</h2>
<p>If you have any questions or need assistance, we're here to help!</p>
<button onclick="askContactNow()">Contact Us Now</button>
<p>Do you require help with your health insurance? Speak with Shield Plus right now for individualised assistance.
Our staff is available to assist you in locating the ideal insurance plan to meet your needs. Contact us by phone, email, or
by completing the form below. Our top priorities are your well-being and mental clarity!</p>
</div>
<div class = "forms">
<fieldset>
<legend>Fill the form</legend>
<form action="contact.php" method="post">
<label>Your Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label>Your Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label>Message:</label><br>
<textarea id="message" name="message" required></textarea><br><br>
<input type="button" id="submitButton" value="Submit" onclick="myfunction()">
</form>
</fieldset>
<br><br>
<fieldset>
<legend><b>Contact us via</b></legend>
<div class = "det">
Adress : 124, Colombo 7, Galle Face<br><br>
Phone : +94 11 5 745 856 <br><br>
Email : [email protected]<br><br>
<a href="#">web : www.shieldplus.com</a>
</div>
</fieldset>
<footer>
<hr>
© 2024 Copyright Reserved - Shield Plus Insurance <br>
<small>[email protected]</small>
</footer>
</div>
</div>
</body>
</html>