-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
43 lines (41 loc) · 1.66 KB
/
contacts.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" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h2><strong>My Contact Details</strong></h2>
<ol>
<li>Contact:9876543210</li>
<li>Email-id:[email protected]</li>
<li><a href="https://www.instagram.com/_raj_kunal_/?hl=en">Instagram</a></li>
<li><a href="https://www.facebook.com/profile.php?id=100010618844645">Facebook</a></li>
</ol>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Username:</label>
<input type="text" name="YourName" value="">
<input type="color" name="" value=""><br>
<label>Email:</label>
<input type="email" name="YourEmail" value=""><br>
<label>Upload your image:</label>
<input type="file" accept="image/jpeg"><br>
<label>Date OF Birth:</label>
<input type="date" name="YourDateOfBirth" value=""><br>
<label>Phone Number:</label>
<input type="number" name="YourPhoneNumber" value=""><br>
<label>Password:</label>
<input type="password" name="" value=""><br>
<label>Do you want to sign up to email list?</label>
<input type="checkbox" name="" value=""><br>
<label>Agreed to all terms and conditions</label>
<button type="button" name="button">Agree</button><br>
<label>Enter Your Message:</label><br>
<textarea name="YourMessage" rows="20" cols="167"></textarea><br>
<div style ="text-align: center">
<input type="submit" value="Submit" align="center">
</div>
</form>
</body>
</html>