-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_me.html
50 lines (50 loc) · 1.66 KB
/
contact_me.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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact me</title>
</head>
<body>
<h3>My contact details:</h3>
<p>
My email address: [email protected] <br>
My contact number: 9334986001 <br>
</p>
<hr>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<table cellspacing="5">
<tr><td>
<label for="fname">Full name    </label>
<input type="text" id="fname" name="Full name" placeholder="Your name" required></td>
</tr>
<tr><td>
<label for="">Mobile Number    </label>
<input type="tel" name="Mobile Number" placeholder="6969696969" size="8" required></td>
</tr>
<tr>
<td>
<label for="">E-mail    </label>
<input type="email" name="E-mail" value="" placeholder="[email protected]" size="24" required>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="">
<label for="">Do you like trivia</label>
</td>
</tr>
<tr>
<td>
<label for="">Your queries (if any): </label><br>
<textarea name="name" rows="3" cols="29"></textarea>
</td>
</tr>
</table>
<label for="">Select your birthday: </label>
<input type="date" name="" value=""> <br>
<label for="">Attach your CV (not mandatory): </label>
<input type="file" name="" value=""><br>
<input type="submit" value="Submit">
</form>
</body>
</html>