-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCONTACTME.html
45 lines (44 loc) · 1.29 KB
/
CONTACTME.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
<!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>
<h3>my contact</h3>
<p>this is the contact details</p>
<ul>
<li>mon</li>
<li>tues</li>
<li>wed</li>
</ul>
<hr />
<form action="mailto:rahuliit30@gmail.com" method="post">
<fieldset>
<legend><strong>YOUR CONTACT DETAIL</strong></legend>
<label for="username">YOUR NAME : </label>
<input id="username" type="text" />
<br />
<br />
<label for="email">YOUR EMAIL:</label>
<input id="email" type="email" />
<br />
<label for="message">YOUR MESSAGE</label>
<br />
<textarea id="message" cols="30" rows="10"></textarea>
<br />
<input type="submit" />
<br />
<label for="term">are you agree on this condition</label>
<br />
<label for="term">yes </label>
<input name="terms" id="term" type="radio" />
<label for="term">No </label>
<input id="term" type="radio" />
</fieldset>
</form>
<hr />
</body>
</html>