-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
28 lines (28 loc) · 869 Bytes
/
form.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
<!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>
<form class="form" action="mailto:[email protected]" method="post">
<div class="form">
<label for="name">Your name:</label>
<input type="name" name="name" id="name">
</div>
<div class="form">
<label for="email">Your email:</label>
<input type="email" name="email" id="email">
</div>
<div class="form">
<label for="text">Message!</label>
<textarea name="text" id="" cols="30" rows="10"></textarea>
</div>
<div class="form">
<input type="submit" value="Submit!">
</div>
</form>
</body>
</html>