-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
32 lines (32 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>MY fictional Address</p>
<p>6362065000</p>
<p>[email protected]</p>
<hr>
<form action="mailto:[email protected]" method="post" encrip="text/plain">
<label>Your Name</label>
<input type="text" name="your name" >
<input type="color"><br>
<input type="checkbox">
<label>DO u want to sing up to the e-mail list</label><br>
<label>your e-mail</label>
<input type="email" name="mail"><br>
<label for="">password</label>
<input type="password"><br>
<label>your measege</label>
<textarea name="msg" id="" cols="30" rows="10"></textarea><br>
<input type="file"><br>
<input type="date"><br>
<input type="radio"><br>
<input type="range"><br>
<input type="submit">
</form>
</body>
</html>