-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-me.html
42 lines (41 loc) · 1.28 KB
/
contact-me.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
---
id: contact-me
title: Contact Me
author: James Howard
layout: page
guid: contact-me
---
<form action="https://formspree.io/xzbawrpg" method="POST">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label>Your Full Name</label>
<input type="text" name="name" value="" placeholder="John Doe" class="form-control form-control-plain">
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Your Email</label>
<input type="text" name="email" value="" placeholder="[email protected]" class="form-control form-control-plain">
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Subject</label>
<input type="text" name="subject" value="" placeholder="Say hi to me" class="form-control form-control-plain">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea name="content" class="form-control form-control-plain" placeholder="Here you can write your nice text" rows="8"></textarea>
</div>
<div>
<div class="col-md-2 col-md-offset-5">
<button type="submit" class="btn btn-danger btn-fill">
Contact Me
</button>
</div>
</div>
</div>
</div>
</form>