-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
43 lines (39 loc) · 1.14 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact</title>
</head>
<body>
<h1>My contact details</h1>
<ol>
<li>email:[email protected]</li>
<li>mobile:9713402267</li>
</ol>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>your name:</label>
<input type="text" name="myname" value="">
<input type="color" name="mycolor" valve="">
<br>
<br>
<label>do you want to sign In</label>
<input type="checkbox" valve="">
<br>
<br>
<label>Password:</label>
<input type="Password" name="mypassword" value="">
<br>
<br>
<label>your email:</label>
<input type="email" name="mymail" value="">
<br>
<br>
<label>your msg:</label>
<textarea neme="name" name="mymsg" row="5" cols="8"></textarea>
<br> <br>
<input type="submit" value="save">
</form>
</body>
</html>