-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
25 lines (25 loc) · 1.23 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
---
layout: page
permalink: /contact/
title: Contact
---
<p>
Contact me using this form. Visit my <a href="https://linkedin.com/in/ClaireAnnan"
class="text-indigo-700 hover:text-indigo-500 hover:underline mt-8">LinkedIn</a>
page for more
information
about my work experience. Thanks for visiting!
</p>
<form action="https://getform.io/f/34706a38-e16f-4bc8-89c3-8852ae2eee16" method="POST"
class="flex flex-col max-w-xl mx-auto mt-8">
<label class="font-semibold uppercase mt-4" for="name">Name <span class="lowercase text-sm">(required)</span></label>
<input type="text" id="name" name="name" class="border p-2">
<label class="font-semibold uppercase mt-4" for="email">Email <span
class="lowercase text-sm">(required)</span></label>
<input type="email" id="email" name="email" class="border p-2">
<label class="font-semibold uppercase mt-4" for="message">Message <span
class="lowercase text-sm">(required)</span></label>
<textarea name="message" id="message" cols="30" rows="8" class="border p-2"></textarea>
<button type="submit"
class="self-center px-8 py-3 mt-4 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 md:text-lg md:px-10">Send</button>
</form>