-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
127 lines (98 loc) · 3.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<meta charset="utf-8">
<title>Contact-NiaApps</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Stop here for mobile app software and website development. I am a freelancer running her own business. My titles are coder and developer. You'll find my blog touches on a range of topics: technology, love, music, politics, android development, and website design. ">
<style>
textarea{vertical-align: top;}
select{vertical-align: top;}
form{display: inline-block;
width: 200px;
text-align: left;}
</style>
</head>
<body style="overflow-x: hidden">
<div id="main-container">
<header>
<div class="nav-container">
<!-- <img src="images/logo.png" alt="logo" class="logo"> -->
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/pricing.html">Pricing</a></li>
<li><a href="/portfolio.html">Portfolio</a></li>
</ul>
</nav>
</div>
</header>
<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>
<footer class="footer" >
<!-- Footer Links -->
<div class="footer-links">
<div class="footer-links-left">
<ul class ="social">
<li>
<a href="#">
<img src="/images/fb.png" alt="fb-link" style="width: 32px; height:32px">
</a>
</li>
<li>
<a href="https://twitter.com/niawillie">
<img src="/images/twitter.png" alt="twi-link" style="width: 28px; height:28px">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/niaapps">
<img src="/images/li.png" alt="li-link" style="width: 32px; height:32px">
</a>
</li>
<li>
<a href="https://github.com/niaapps">
<img src="/images/git.png" alt="git-link" style="width: 32px; height:32px ">
</a>
</li>
</ul>
</div>
<div class="footer-subscribe">
<form class="form-subscribe" action="subscribe.php" method="post">
Subscribe for Updates: <input type="text" name="subscribe">
<input type="submit" name="sub_button" value="Sign Up">
</form>
</div>
</div>
<!-- <div class="footer-copyright"> © 2019 Copyright: Nia Applications
</div> -->
<!-- Footer Links -->
</footer>
</div>
</body>
</html>