-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
99 lines (87 loc) · 3.43 KB
/
Copy pathcontact.html
File metadata and controls
99 lines (87 loc) · 3.43 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
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
---
layout: default
title: Contact
---
<!--Links-->
<div class="container mt-5">
<!--Heading-->
<div class="text-center">
<h1>Lets chat!</h1>
<p>
I would love to hear about your project or business
opportunity that relates to software development;
or just how your day has been.
</p>
</div>
<!--Grid-->
<div class="container-fluid w-100 mt-5">
<div class="row text-center justify-content-center g-5">
<!--Email-->
<div class="col-12 col-md-4">
<a class="btn bg-tertiary rounded-5 p-3" href="mailto:{{ site.email }}">
<img class="nav-icon" src="/assets/img/icon/envelope-fill.svg">
</a>
<div class="mt-2">
<h5 class="mb-0">
Send an email:
</h5>
<a class="d-block" href="mailto:{{ site.email }}">
{{ site.email }}
</a>
<a class="d-block" href="mailto:{{ site.email-personal }}">
{{ site.email-personal }}
</a>
</div>
</div>
<!--Phone-->
<div class="col-12 col-md-4">
<a class="btn bg-tertiary rounded-5 p-3" href="tel:{{ site.phone }}">
<img class="nav-icon" src="/assets/img/icon/telephone-fill.svg">
</a>
<div class="mt-2">
<h5 class="m-0">
Call or voicemail:
</h5>
<a class="d-block" href="tel:{{ site.phone }}">
{{ site.phone-text }}
</a>
</div>
</div>
<!--Social-->
<div class="col-12 col-md-4">
<a class="btn bg-tertiary rounded-5 p-3" href="{{ site.linkedin }}">
<img class="nav-icon" src="/assets/img/icon/people-fill.svg">
</a>
<div class="mt-2">
<h5 class="m-0">
Leave a dm:
</h5>
<a class="d-block" href="{{ site.linkedin }}">
Linkedin
</a>
<a class="d-block" href="{{ site.instagram }}">
Instagram
</a>
</div>
</div>
</div>
</div>
</div>
<!--Form-->
<div class="container text-center mt-5">
<h1 class="mb-3">Or drop a message below.</h1>
<p>I'll write back to you within 24 hours!</p>
<p class="text-danger">
Note: Forms are handled by a third party and
message security is not guaranteed.
</p>
<!--formsubmit.co-->
<form action="https://formspree.io/f/xovwoaqr" method="POST">
<input class="form-control mb-3" type="text" name="name" placeholder="Your name" required>
<input class="form-control mb-3" type="email" name="email" placeholder="Your email" required>
<textarea class="form-control mb-3" name="message" placeholder="Your message" style="min-height: 300px;" required></textarea>
<button class="btn btn-primary" type="submit">Submit</button>
<input type="text" name="_gotcha" style="display:none">
</form>
<p class="text-center mt-3">Don't know if I am the right match? Ask about my resume!</p>
</div>