-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact</title>
</head>
<body>
<p>
to contact :
<br />
<strong> phone number is 897683932S</strong>
</p>
<hr />
<b>ENTER YOUR DETAILS</b>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<fieldset>
<label> Your name</label><br />
<input type="text" name="your n ame" value=""><br />
<label> email address</label><br />
<input type="email" name="email" value=""><br />
<label>enter a PASSWORD</label>
<input type="password" name="password" />
<br />
<label>Leave a message?></label><br />
<textarea name="text box" rows="8" cols="80"></textarea><br />
<label> Do you want to sign up??</label>
<input type="checkbox" name="" value="">
<br>
<button>submit</button>
</fieldset>
</form>
</body>
</html>