-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (65 loc) · 2.63 KB
/
Copy pathcontact.html
File metadata and controls
66 lines (65 loc) · 2.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
layout: default
title: Contact | One of Philippines Leading Web Design & Development Agency
permalink: '/contact'
heading : "Nice to meet you. Tell us about your <span>Project.</span>"
form_heading : "FILL IN THE FORM"
---
<!-- start: contact section -->
<section class="site-contact">
<div class="container">
<div class="row">
<div class="col-lg-5">
<h1 class="site-contact-title">
{{ page.heading }}
</h1>
</div>
<div class="col-lg-6 ml-auto">
<div class="site-contact-form">
<h4>{{ page.form_heading }}</h4>
<form id="contact-form" action="{{ site.formspreeFormUrl }}" method="POST">
<div class="row">
<div class="col-lg-6">
<input type="text" class="form-control" name="first-name" id="first-name" placeholder="First Name">
</div>
<div class="col-lg-6">
<input type="text" class="form-control" name="last-name" id="last-name" placeholder="Last Name">
</div>
<div class="col-lg-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Email">
</div>
<div class="col-lg-6">
<div class="select-wrapper">
<select class="form-control" id="projectType" name="project-type">
<option value="" selected disabled hidden>Project Type</option>
<option value="Graphic Design">Graphics Design</option>
<option value="Web Development">Web Development</option>
<option value="Web Design">Web Design</option>
<option value="Search Engine Optimization">Search Engine Optimization</option>
<option value="Branding">Branding</option>
</select>
</div>
</div>
<div class="col-12">
<textarea class="form-control" id="aboutProject" name="about-project" rows="6" placeholder="About the Project"></textarea>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary" id="contact-form-button">
<span class="btn-area">
<span data-text="Send Message">
Send Message
</span>
</span>
</button>
</div>
<div class="col-12">
<p id="contact-form-status"></p>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- end: contact section -->