-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
45 lines (43 loc) · 1.01 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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html <head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>Orange NJ, 07050</p>
<p>9732331616</p>
<p>[email protected]</p>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tbody>
<tr>
<td><label>Your name:</label>
</td>
<td><input type="text" name="" value="">
</td>
</tr>
<tr>
<td><label>Date and Time</label>
</td>
<td><input type="datetime-local" name="" value="">
</td>
</tr>
<tr>
<td><label>Password</label>
</td>
<td><input type="password" name="" value="">
</td>
<td><input type="submit" name="">
</td>
</tr>
</tbody>
</table>
<br>
<label>Your Message:</label><br>
<textarea name="name" rows="8" cols="80"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>