-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
35 lines (33 loc) · 959 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact</title>
</head>
<body>
<h1>Mes coordonnées</h1>
<p>momo ali</p>
<p>30 rue de marseille</p>
<p>[email protected]</p><br>
<p>You can reach Michael at:</p>
<ul id="contact">
<li><a href="https://example.com">Website</a></li>
<li><a href="mailto:[email protected]">Email</a></li>
<li><a href="tel:+123456789">Phone</a></li>
</ul>
<form action="mailto:[email protected]" method="post" enctype="text plain">
<label>Votre nom</label>
<input type="text" name="votre nom" value="">
<br>
<label>Votre prenom</label>
<input type="text" name="votre prenom"value="">
<br>
<label>Votre email</label>
<input type="email" name="votre email"value="">
<br>
<label>Votre message</label>
<textarea name="votre message" rows="10" cols="30"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>