-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
52 lines (42 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Page</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="contact">
<h2>Contact</h2>
<form action="contact.php" style="display: flex; flex-direction: column; max-width: 400px">
<label for="firstname">
Prénom
</label>
<input id="firstname" name="firstname" type="text">
<label for="name">
Nom
</label>
<input id="name" name="name" type="text">
<label for="email">
Email
</label>
<input id="email" name="email" type="text">
<label for="description">
Description
</label>
<textarea id="description" name="description" cols="30" rows="10"></textarea>
<button type="submit">Envoyer</button>
</form>
</section>
</body>
</html>