-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
30 lines (27 loc) · 802 Bytes
/
contact.html
File metadata and controls
30 lines (27 loc) · 802 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>My contact details and form</h1>
<p>email: <strong><a href="mailto:test@yahoo.fr">test@yahoo.fr</a></strong></p>
<hr>
<form action="mailto:test@yahoo.fr" method="post">
<label>Your name :</label>
<input type="text" name="yourName">
<br>
<label>Your email :</label>
<input type="email" name="yourName" placeholder="exemple@gmail.com">
<br>
<label>Your message :</label>
<textarea name="yourMessage" rows="6" cols="100"></textarea>
<br>
<input type="submit" formenctype="text/plain">
</form>
<hr>
<a href="index.html">Back to CV</a>
</body>
</html>