forked from FatihaHarram/tiha-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
49 lines (42 loc) · 1.5 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
session_start();
include_once('lib/php/fonction.php');
include_once('meta_header.php');
include_once('nav.php');
?>
<title>contact</title>
</head>
<body>
<div id="content">
<div id="container">
<div id="header_contact">
<h2> Vous avez des questions? </h2>
<p>Vous pouvez me contacter à tout moment, via mon formulaire de contact, par téléphone ou email. </br>
Vous trouverez mes coordonnées complètes. </br>Je serais ravie de répondre à vos questions. </p>
</br>
<p>
<img src="img/phone.png"> 0477/89 42 05
</p>
<p>
<img src="img/mail.png"> info@tiha.be
</p>
</div>
<div id="contact-wrap">
<div id="contact-area">
<form method="post" action="mailto:info@tiha.be">
<input type="text" name="Name" id="Name" placeholder="Full Name" />
<input type="text" name="City" id="City" placeholder="City"/>
<input type="text" name="Email" id="Email" placeholder="Email"/>
<input type="text" name="Phone" id="Phone" placeholder="Phone"/>
<textarea name="Message" rows="20" cols="20" id="Message" placeholder="Message"></textarea>
<input type="submit" name="submit" value="Submit" class="submit-button"/>
</form>
</div><!--contact-aera-->
</div> <!--contact-wrap-->
</div><!--container-->
</div> <!--content-->
<?php
include_once('js/script_js.php');
?>
</body>
</html>