forked from KIIT-DU-BHUBANESWAR/gdtc-Day1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContacts.html
49 lines (43 loc) · 1.11 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
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>contacts details</title>
</head>
<body style = " background-color: powderblue;">
<p>
<ol type ="i">
<li>
Phone no : 9876543210
</li>
<li>
whatsapp no : same as phone no
</li>
</ol>
</p>
<form action="mailto:[email protected]" method="post" enctype = "text/plain">
<p>
<label>Type your name:</label>
<input type="name" name="yourname" value="">
<input type="color" name="" value="">
</p>
<p>
<label>Enter your email</label>
<input type="email" name="youremail" value="">
</p>
<p>
<label>Date of birth</label>
<input type="date" name="" value="">
</p>
<p>
<label>Your message</label>
<p>
<p>
<textarea name="name" rows="8" cols="80"></textarea>
</p>
<p>
<input type="submit" name="" >
</p>
</form>
</body>
</html>