-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
34 lines (32 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>MY detail</title>
</head>
<body>
<h1>ABOUT MY CONTACT</h1>
<ol>
<li>my email is [email protected]</li>
<li>my mobile number is 9660685198</li>
<li>my house address is cinema road hajipur Vaishali Bihar</li>
</ol>
<form action="index.html" method="post">
<label for="">your name:</label>
<input type="text" name="" value="">
<p>emial:<input type="email" name="" value=""></p>
<p>password<input type="password" name="password" value=""></p>
<hr>
<label>gender</label>
<p>male<input type="radio" name="male" value="male"></p>
<p>female<input type="radio" name="male" value="female"></p>
<fieldset>
<legend>courses</legend>
<p>MTECH<input type="radio" name="mtech" value=""></p>
<p>BTECH<input type="radio" name="" value=""></p>
</fieldset>
<br>
<input type="submit" name="" value="submit">
</form>
</body>
</html>