-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
49 lines (38 loc) · 1.24 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
---
layout: default
---
<html>
<head>
<style>
textarea{vertical-align: top;
display: block;}
form{display: inline-block;
width: 400px;
text-align: left;}
</style>
</head>
<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:niaapplications@gmail.com">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/niaapplications@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>