-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
41 lines (38 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>my facebook link is <a href="https://www.facebook.com/"> link </a></p>
<h1>Adresse e-mail :</h1>
<p>[email protected]</p>
<h1>my number's phone :</h1>
<p>28360788</p>
<p>For having a meeting with me please fill up this form :😇 </p>
<form class="" action="mailto:[email protected]" method="POST" >
<table>
<tr>
<td><label >you mail :</label></td>
<td><input type="email" name="your email" ></td>
</tr>
<tr>
<td><label >Date :</label></td>
<td><input type="date" name="the Date"></td>
</tr>
<tr>
<td><label >full name :</label></td>
<td> <input type="text" name="your name"></td>
</tr>
<tr>
<td><label >your CV file</label></td>
<td><input type="file" name="your CV PDF"></td>
<td><input type="submit"></td>
</tr>
</table>
</form>
</body>
</html>