-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontactpage.html
37 lines (31 loc) · 1.1 KB
/
contactpage.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
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style/contactpage.css" />
<title>Document</title>
</head>
<body>
<header>
</header>
<section id="contact">
<div class="container">
<div class="title">
<h2>Une question ? Un conseil ?</h2>
<h3>Contactez-nous</h3>
</div>
<form action="#" method="post">
<input type="text" name="name" placeholder="Entrer votre nom..." required="">
<input type="email" name="email" placeholder="Entrer votre email..." required="">
<input type="text" name="subject" placeholder="Entrer le sujet.." required="">
<input type="number" name="number" placeholder="Entrer votre numéro de téléphone..." required="">
<textarea name="message" placeholder="Entrer votre message"></textarea>
<button type="submit">Envoyer</button>
</form>
</div>
</section>
<footer>
</footer>
</body>
</html>