-
Notifications
You must be signed in to change notification settings - Fork 4
/
contactus.php
68 lines (56 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<title>Yamaha</title>
<link href="Resources/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-----------------Wrapper----------------->
<div id="wrapper">
<!-----------------Header & Navigation Bar----------------->
<?php
include('header.php');
?>
<!----------------- main frame----------------->
<div id="mainframe">
<div class="sub_frame" style="width:100%">
<h3Contact Us</h3>
<p>
<div class="row">
<div class="col_3">
<!-----------------Contact us form----------------->
<div class="container" >
<h3>Message Us</h3>
<hr>
<form name="ContactForm" method="post">
<br>
<input type="text" name="txtFullname" id="txtFullname" placeholder="Full name" required>
<br>
<br>
<input type="text" name="txtemail" id="txtemail" placeholder="Email Address" required>
<br>
<br>
<input type="text" name="txtSubject" id="txtSubject" placeholder="Subject" required>
<br>
<br>
<textarea name="txtaMessage" id="txtaMessage" placeholder="Your Message...." required minlength="100" maxlength="800"></textarea>
<br>
<br>
<p><input name="Send Message" type="submit" id="Send Message" value="Send Message" onClick="checkEmail();"></p>
</form>
</div>
</div>
<div class="col_3">
<h3> Our Place</h3>
<img src="Resources/designimages/Service_Center.jpg" alt="Colombo Store " style="width:550px;height:400px">
</div>
</div>
</div>
<div class="clear"></div>
<!-----------------Footer----------------->
<?php include('Resources/footer.php');?>
</div>
</div>
<script src="Resources/js.js"></script>
</body>
</html>