-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerci.php
61 lines (34 loc) · 1.04 KB
/
merci.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
<!DOCTYPE html>
<html>
<head>
<?php include('head.php');?>
</head>
<body>
<!-- ********* Main part – headline ********** -->
<div id="main_part_merci">
<div id="main_part_merci_in">
</div>
<p><a href="index.php">Portfolio de Vyach Sellathurai</a></p>
</div>
<!-- ********* Content ********** -->
<div id="content_inner_merci">
<h5>Je vous remercie de m'avoir envoyer un message.</h5>
<a href="index.php" class="button_merci">Accueil</a>
<div class="cara"></div>
</div>
<!-- ********* Footer ********** -->
<?php include('footer.php');?>
<script>
// script for testimonial' tabs
$(function() {
$("ul.controls").tabs("div.testimonials > div");
});
</script>
</body>
</html>
<?php
function espace($nombreEspace) {
$espaceTotal = str_repeat(" ",$nombreEspace) ;
echo $espaceTotal ;
}
?>