-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
50 lines (42 loc) · 1.08 KB
/
contacts.html
File metadata and controls
50 lines (42 loc) · 1.08 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
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>my contact info page</title>
<style>
a {font-size: 20px;
text-decoration: none;
}
h3{font-size: 30px;}
</style>
</head>
<body>
<h3>
Contact Me
</h3>
<a href="mailto:reshweez777@gmail.com">Email</a>
<br /> <a href="https://www.instagram.com/crochetdroplets/">Instagram</a>
<br/>
<hr />
<form method="post" action="mailto:reshweez777@gmail.com" class="submit-form" enctype="text/plain">
<br />
<div class="submit-form">
<label for="your-name">Your name:</label>
<input type="text" name="name"/>
</div>
<br />
<div class="submit-form">
<label for="your-email">Your Email:</label>
<input type="email" name="email"/>
</div>
<br />
<div class="submit-form">
<label for="your-msg">Your message:</label><br />
<textarea name="your-name" rows="10" cols="30"></textarea>
</div>
<div class="submit-form">
<input type="submit" name="submit"/>
</div>
</form>
</body>
</html>