-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
30 lines (29 loc) · 893 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
</head>
<body>
<h1>Contact Information</h1>
<hr size="2" noshade="1">
<p>Address: <em>Singapore</em></p>
<p>Mobile Phone: <em>12345678</em></p>
<p><a href="https://www.google.com">LinkedIn</a></p>
<hr>
<h2>Get in touch!</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="">Your Name:</label>
<input type="text" name="Name:">
<br>
<label for="">Your Email:</label>
<input type="email" name="Email:">
<br>
<label for="">Your Message:</label>
<br>
<textarea name="Your Message:" id="" cols="30" rows="10"></textarea>
<input type="submit">
</form>
</body>
</html>