-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
24 lines (24 loc) · 953 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
<!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>Document</title>
</head>
<body>
<h2>My Contact Details : </h2>
<p> -- -> [email protected]</p><hr>
<p><strong></strong></p>
<form action="mailto:[email protected]" method="post">
<label for="Get name" >Name : </label>
<input type="text" name="your name" id="" placeholder="Enter Your Name"><br><br>
<label for="getting_maild">Email : </label>
<input type="email" name="your email" placeholder="Enter Your Email"><br><br>
<input type="radio" name="gender" id="">Male
<input type="radio" name="gender" id="">Female <br><br>
<textarea name="your message" id="" cols="30" rows="10"></textarea><br><br>
<input type="submit" name="Submit form" id="">
</form>
</body>
</html>