-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
49 lines (45 loc) · 1.16 KB
/
contact.php
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
<div style="height: 60px;background-color: #fff;"></div>
<div id="contact" class="contact">
<div class="row center">
<div class="project-plan">
<div class="row align-center even-space">
<div class="col-auto">
<h2>Start a project</h2>
</div>
<div class="col-auto talk-time">
Interested in working together? We should queue up a chat. I will buy coffee.
</div>
<div class="col-auto">
<button>Let's do this</button>
</div>
</div>
</div>
</div>
<!-- Contact Form -->
<div class="contact-form">
<div class="row">
<div class="col">
<div class="message">
Thanks for talking the time to reach out. What can i do for you today ?
</div>
<form action="" class="rb-form">
<div class="row">
<div class="col">
<label>Name</label>
<input type="text">
</div>
<div class="col email-input">
<label>Email</label>
<input type="email">
</div>
</div>
<label for="">Message</label>
<textarea name="" id="" cols="30" rows="10"></textarea>
<div style="text-align:right">
<button>Send</button>
</div>
</form>
</div>
</div>
</div>
</div>