-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
61 lines (48 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
layout: default
---
<html>
<head>
<style>
textarea {
vertical-align: top;
display: block;
}
form {
display: inline-block;
width: 400px;
text-align: left;
}
</style>
</head>
<title>Contact-NiaApps</title>
<div class="page-title">
<p>
<h2> Contact</h2>
</p><br>
</div>
<div class="con-container">
<div class="con-text">
<p class="tab">
The form below is the quickest way to reach me regarding projects.<br>
You may also email me directly at: <a href="mailto:@gmail.com"
target="_blank">niaapplications@gmail.com</a>.<br>
Blog comments are also responded to frequently. I look forward to hearing from you regarding exciting new
projects, questions about current collaborations, and feedback that helps me better serve my clients'
vision.
</p>
</div>
<form name="input" action="https://formspree.io/@gmail.com" method="POST">
<label for="name"> Name: </label>
<input type="text" name="name" id="name" required> <br>
<label for="email"> Email: </label>
<input type="text" name="_replyto" id="email" required><br>
<div class="mbox">
<label for="msg">Message:</label>
<textarea name='message' id="msg" maxlength="1000" cols="30" rows="6" required></textarea>
</div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>