-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (26 loc) · 888 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
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h3>Contact Me</h3>
<p>Nicolas M.Bronner</p>
<p>[email protected]</p>
<p>+34 618 499 851</p>
<p><a href="https://twitter.com/NicolasMBronner">Twitter</a></p>
<p><a href="https://www.instagram.com/elvinanima/">Instagram</a></p>
<p><a href="https://www.patreon.com/home">Patreon</a></p>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Votre Nom : </label>
<input type="text" name="yourName" value=""><br>
<label>Votre Email : </label>
<input type="email" name="yourEmail" value=""><br>
<label>Votre Message : </label><br>
<textarea name="yourMessage" rows="10" cols="30"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>