-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.qmd
More file actions
78 lines (53 loc) · 1.68 KB
/
contact.qmd
File metadata and controls
78 lines (53 loc) · 1.68 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
---
pagetitle: Contact
# title: Send me a note
name: Contact Form
page-layout: article
format:
html:
grid:
margin-width: 0px
sidebar-width: 0px
header-includes: >
<link rel="stylesheet" href="assets/contact.css">
resources:
- assets/contact.css
---
::: {.grid}
::: {.g-col-5 #note}
# Contact {{< fa feather-pointed >}}
You can use this form to contact me about speaking engagements,
collaborations, teaching or simply to say hello.
You can contact me in **English**, **Spanish** or **German**.
<!-- {fig-align="left" width=40%} -->
:::
<!-- source: https://github.com/mccarthy-m-g/tidytales/blob/main/about/index.qmd#L24-L46 -->
::: {.g-col-1}
:::
::: {.g-col-6 #form}
## Contact
<form
action="https://formspree.io/f/meqyelnb"
method="POST"
accept-charset="utf-8">
::: {.form-group .col-10}
<label for="full-name">Full Name / First and Last Name</label>
<input type="text" name="name" id="full-name" class="form-control" placeholder="First and Last Name" required>
:::
::: {.form-group}
<label for="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" class="form-control" placeholder="your@email.here" required>
:::
::: {.form-group}
<label for="subject">Subject</label>
<input type="" name="_replyto" id="subject" class="form-control" placeholder="Website inquiry">
:::
::: {.form-group}
<label for="message">Message</label>
<textarea rows="6" name="message" id="message" class="form-control" placeholder="Write your message here / Escribe su mensaje aqui" required></textarea>
:::
<button type="submit" class="btn btn-primary mt-4">Send message / Enviar mensaje</button>
</form>
:::
:::
<!-- end grid -->