-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
35 lines (35 loc) · 972 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
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Website | Contact Me</title>
</head>
<body>
<h1>Contact Me</h1>
<hr />
<h3>Contact Info</h3>
<p>
Address: Somewhere in this planet St, A Random Neiborhood <br />
Tel.: +55 00 9 9988-7766 <br />
E-mail: [email protected] <br />
</p>
<form class="" action="mailto:[email protected]" method="post">
<label>Your Name:</label><br />
<input type="text" name="" value="" /><br />
<label>E-mail:</label><br />
<input type="email" name="" value="" /><br />
<label>Message:</label><br />
<textarea
name=""
id=""
cols="31"
rows="10"
style="resize: none"
></textarea
><br />
<input type="submit" name="" />
</form>
<a href="index.html">Go back</a>
</body>
</html>