-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
37 lines (35 loc) · 1.43 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
34
35
36
37
<!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>Contact me</title>
</head>
<body>
<h1>My contact</h1>
<p>My Fictional Address</p>
<p>0987654321</p>
<p>myEmail@gmail.com</p>
<hr>
<form class="" action="index.html" method="post">
<!-- <form class="" action="mailto:goluojha@gmail.como" method="post" enctype="text/plain"> -->
<!-- <label for="file">upload file</label>
<input name="file" id="range" min="0" max="90" type="file" value="1"><br>
<label for="range">Rate my site</label>
<input name="range" id="range" min="0" max="90" type="range" value="1"><br> -->
<label for="Name">Your name:</label>
<input name="Name" id="Name" type="text"><br>
<!-- <input name="color" id="color" type="color"><br> -->
<!-- <label for="checkbox">Do you want to signUp?</label>
<input name="checkbox" id="checkbox" type="checkbox"> -->
<label for="email">Your email:</label>
<input type="email"><br>
<label for="password">password</label>
<input type="password"><br>
<label for="">Your message</label><br>
<textarea name="" id="" cols="30" rows="10"></textarea>
<input name="" type="submit">
</form>
</body>
</html>