-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
40 lines (30 loc) · 977 Bytes
/
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
<!-- contact.html -->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contactez-moi</title>
</head>
<!-- ############ DETAILS PERSONNELS ############ -->
<body>
<h1>Mes Détails</h1>
<p>Si vous voulez me contacter pour un projet ou
un travail :</p>
<p>[email protected]</p>
<p>+34 618 499 851</p>
<!--------------------------------------------------------->
<hr>
<!-- FORMULAIRE DE CONTACT -->
<form action="mailto:[email protected]"
method="post" enctype="text/plain">
<label>Votre Nom: </label>
<input type="text" name="yourName" value=""><br>
<label>Votre Mail: </label>
<input type="email" name="yourEmail" value=""><br>
<label>Votre Message: </label><br>
<textarea name="yourMessage" rows="8" cols="30">
</textarea><br>
<input type="submit">
</form>
</body>
</html>