-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
executable file
·49 lines (41 loc) · 1.4 KB
/
contact.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
<?php
include 'head.php';
?>
<!--content-->
<div class="contact">
<div class="container">
<h1>Contact</h1>
<div class="contact-form">
<div class="col-md-8 contact-grid">
<form>
<input type="text" value="Name" onfocus="this.value='';" onblur="if (this.value == '') {this.value ='Name';}">
<input type="text" value="Email" onfocus="this.value='';" onblur="if (this.value == '') {this.value ='Email';}">
<input type="text" value="Subject" onfocus="this.value='';" onblur="if (this.value == '') {this.value ='Subject';}">
<textarea cols="77" rows="6" value=" " onfocus="this.value='';" onblur="if (this.value == '') {this.value = 'Message';}">Message</textarea>
<div class="send">
<input type="submit" value="Send" >
</div>
</form>
</div>
<div class="col-md-4 contact-in">
<div class="address-more">
<h4>Address</h4>
<p>ESM company </p>
<p>Mansoura,</p>
<p>El Galaa Street </p>
</div>
<div class="address-more">
<h4>Address1</h4>
<p>Tel:1115550001</p>
<p>Fax:190-4509-494</p>
<p>Email:<a href="mailto:[email protected]">[email protected]
<p>[email protected]</p></a></p>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<?php
include 'footer.php';
?>