-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
47 lines (36 loc) · 959 Bytes
/
contact.php
File metadata and controls
47 lines (36 loc) · 959 Bytes
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
<?php
session_start();
?><!DOCTYPE html>
<html>
<head>
<?php
include("raccourcis/link_header.php");
?>
<title>Nous trouver</title>
</head>
<body>
<?php
include("raccourcis/header.php");
?>
<!-- Contenu de la page -->
<div class="container_principal">
<div class="container">
<div class="section section_column section_border">
<a href="http://ic2.univ-lemans.fr/fr/index.html"><img src="image/ic2.png" alt="ic2"/></a>
<h2 class="text_center">Où sommes nous ?</h2>
<div class="section section_parametre3">
<span class="text_center">20 Avenue René Laennec<br />72000 Le Mans</span>
<iframe
class="map"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyAcqp4qaeeHMiiHn1ThwhEXxV7JUm836o4
&q=institut+claude+chappe">
</iframe>
</div>
</div>
</div>
<?php
include("raccourcis/footer.php");
?>
</div>
</body>
</html>