-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.php
74 lines (59 loc) · 1.98 KB
/
contactus.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
64
65
66
67
68
69
70
71
72
73
74
<?php
include_once 'header.php'
?>
<div class="contact-us">
<div class="contact-us-h2">CONTACT US</div>
</div>
<h1 class="letter">Got A Question? Get In Touch</h1>
<br>
<div class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d386051.88851986797!2d-74.25819565408364!3d40.70563088180061!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew%20York%2C%20USA!5e0!3m2!1sen!2sca!4v1605011414105!5m2!1sen!2sca"
width="100%"
height="100%"
frameborder="0"
style="border:0"
allowfullscreen=""
aria-hidden="false"
tabindex="0"
></iframe>
</div>
<address>
<img src="images/address.png" alt="address" style="float:left;width:50px;height:50px;">
<script type="text/javascript">
document.write('<p>222/D watareka maawatha<br>Colombo 10<br>Sri lanka</p>');
</script>
</address>
<br>
<p>
<img src="images/telephone.png" alt="number" style="float:left;width:50px;height:50px;">
+94116789435<br>
+94115270060
</p>
<br>
<p>
<img src="images/email2.webp" alt="email" style="float:left;width:50px;height:50px;">
</p>
<br>
<h3 style="color:rgb(8, 77, 130);">drop Us a Line/Book a Demo</h3>
<form action="/action_page.php">
<label for="fname">Name :</label><br>
<input type="text" id="fname" name="fname" size="60"><br>
<br>
<label for="email">Email :</label><br>
<input type="text" id="email" name="email" size="60"><br>
<br>
<label for="tnumber">Telephone number :</label><br>
<input type="text" id="tnumber" name="tnumber" size="10"><br>
<br>
<p>Message :</p>
<textarea name="message" rows="20" cols="60"></textarea>
<br>
<input type="submit">
</form>
<!--footer-->
<?php
include_once 'footer.php'
?>