-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
57 lines (49 loc) · 1.76 KB
/
contact.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CDIN | Projet</title>
<link rel="stylesheet" href="styles.css">
</head>
<body id="maPage">
<header>
<a id="accueilTitreSite" href="index.html"><h1>PrayForMySemestre</h1></a>
<nav>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="equipe.html">L'Équipe</a></li>
<li><a href="actualite.html">Actualité</a></li>
<li><a href="metiers.html">Métiers</a></li>
<li><a href="interview.html">Interview</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
</header>
<h2>Nous Contacter</h2>
<form action="fichier.php" method="post">
<div>
<label for="name">Nom :</label>
<input type="text" id="name" name="user_name" placeholder="Nom Prénom">
</div>
<div>
<label for="mail">Mail :</label>
<input type="email" id="mail" name="user_email" placeholder="[email protected]">
</div>
<div>
<label for="sujet">Sujet :</label>
<input type="text" id="sujet" name="user_sujet" placeholder="Demande d'information">
</div>
<div>
<label for="msg">Message :</label>
<textarea id="msg" name="user_message" placeholder="Votre message ..."></textarea>
</div>
<div class="button">
<button type="submit">Envoyer</button>
</div>
</form>
<footer class="middle">
<p>© DreamTeam - 2017 - Tous droits réservés -
<a href="contact.html">Contact</a> - <a href="mentions_legales.html">Mentions légales</a></p>
</footer>
</body>
</html>