-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
44 lines (38 loc) · 1.05 KB
/
test.html
File metadata and controls
44 lines (38 loc) · 1.05 KB
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
42
43
44
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!-- <div class="container">
<form action="">
<div class = "form-group">
<label for = "name">Name</label>
<input type="text" id = "name" name="name">
</div>
<div class = "form-group">
<label for = "email">Email</label>
<input type="email" id = "email" name="email">
</div>
<div class = "form-group">
<label for = "message">Message</label>
<textarea name = "message" id = "message" cols = "30" rows="10"></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div> -->
<form action="https://formsubmit.co/your@email.com" method="POST">
<div>
<label for = "name">Name</label>
<input type="text" name="name">
</div>
<div>
<label for = "email">Email</label>
<input type="email" name="email" placeholder="Email Address" required>
</div>
<label for = "message">Message</label>
<textarea name = "message" id = "message" cols = "30" rows="10"></textarea>
<button type="submit">Submit</button>
</form>
</body>
</html>