-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.html
More file actions
36 lines (26 loc) · 821 Bytes
/
message.html
File metadata and controls
36 lines (26 loc) · 821 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form class="" action="index.html" method="post">
<table>
<tr>
<td><label for="">Your Name</label></td>
<td><input type="text" name="" value="" placeholder="Your Name"</td>
</tr>
<tr>
<td><label for="">Your Email</label></td>
<td><input type="email" name="" value="" placeholder="Your Email"></td>
</tr>
<tr>
<td><label for="">Your Message!</label></td>
<td><textarea name="name" rows="8" cols="80" placeholder="Your Message"></textarea></td>
</tr>
</table>
<input type="submit" name="" value="">
</form>
</body>
</html>