-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
38 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact us</title>
</head>
<body>
<h1>My Contact Details </h1>
<p>Phone No. :- 8791358481</p>
<p>Address :- H.No. 10/14 Chatta Jambu Das Mohalla Shormiyan , Saharanpur , Uttar Pradesh </p>
<p>Email :- [email protected]</p>
<hr>
<h2>Your Contact Details </h2>
<p>Required fields are followed by *</p>
<form action="">
<p>Enter Your Name : *<input type="text" name="name" required></p>
<fieldset>
<legend>Gender</legend>
<p>
Male <input type="radio" name="gender" id="male">
Female <input type="radio" name="gender" id="Female">
</p>
</fieldset>
<p>D.O.B.: *<input type="date" name="date" id="date" required></p>
<p>Address : <textarea name="address" id="address" cols="100" rows="8"></textarea> </p>
<p>Email : *<input type="email" name="email" id="email" required ></p>
<p>Password : *<input type="password" name="password " id="password" required ></p>
<input type="submit" value="submit">
</form>
</body>
</html>