-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact-me.html
41 lines (35 loc) · 1.13 KB
/
Contact-me.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me/HTML inputs</title>
</head>
<body>
<h1>My contact details</h1>
<p>My fictional address</p>
<p>7017315418</p>
<p>saad500nbd@gmail.com</p>
<hr>
<form action="mailto:saad500nbd@gmail.com" method="post" enctype="text/plain">
<label for="Your Name">Your name:</label>
<input type="text" name="Your Name" value=""><br>
<label for="">Your Email:</label>
<input type="email" name="Your email" value=""><br>
<label for="">Your Message:</label><br>
<textarea name="Your Message:" rows="10" cols="30"></textarea><br>
<label>password:</label>
<input type="password" name="" value=""><br>
<!--<label>Do you want to sign up to email list?</label>
<input type="checkbox" name="" value=""><br>
<input type='file' name="" value=""><br>
<label>Choose Date</label>
<input type="date" name="" value=""><br>
<label for="">switch radio on</label>
<input type="radio" name="" value=""><br>
<label for="">🔊</label>
<input type="range" name="" value="">-->
<input type="reset" name="" >
<input type="submit" name="">
</form>
</body>
</html>