-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
53 lines (45 loc) · 1.25 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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=ˀ, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1> <strong>My Contact Details</strong></h1>
<ul>
<li> Phone: <strong>+91 7533865543</strong></li>
<br>
<li> Email: <strong>[email protected]</strong></li>
</ul>
<br>
<hr size="2" color="black">
<br>
<br>
<form action="mailto:[email protected]" method="post" enctype="text/plain" target="_blank" >
<label >Your Email: </label>
<input type="email" name="yourEmail" value="">
<!-- <input type="color" name="" id=""> -->
<br>
<br>
<label>Password: </label>
<input type="password" name="" id="" minlength="4" maxlength="20" >
<br>
<br>
<label >Do you want to sign up with this email?</label>
<input type="checkbox" name="" id="">
<br>
<br>
<!-- <input type="date" name="" id=""> -->
<label>DOB:</label>
<input type="date"/>
<br>
<br>
<label>Your Message:</label>
<textarea name="yourMessage" id="" cols="50" rows="1" minlength="10" maxlength="20"></textarea>
<br>
<br>
<input type="submit" name="" id="">
</form>
</body>
</html>