-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
47 lines (44 loc) · 1.74 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Btp</title>
<link rel="stylesheet" href="btp.css"/>
</head>
<body>
<header class="head">
<a href="accueil.html">Acceuil</a>
<a href="presentation.html">Presentation</a>
<a href="equipe.html">Equipe</a>
<a href="realisations.html">Realisation</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main class="main_block5">
<section class="block_contact_1">
<h1>CONTACT</h1>
</section>
<section class="blockform">
<form class="form" action="/ma-page-de-traitement" method="post">
<h1>Contactez-nous</h1>
<div class="case" >
<label for="name">Nom :</label>
<input type="text" id="name" name="user_name">
</div>
<div class="case">
<label for="mail">e-mail :</label>
<input type="email" id="mail" name="user_mail">
</div>
<div class="case">
<label for="msg">Message :</label>
<textarea id="msg" name="user_message"></textarea>
</div>
</form>
</section>
</main>
<footer>
<p>Yaya-Production™</p>
</footer>
</body>
</html>