-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.Rmd
More file actions
67 lines (55 loc) · 1.38 KB
/
Copy pathcontact.Rmd
File metadata and controls
67 lines (55 loc) · 1.38 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
---
title: "Contact"
output: html_document
---
<!--https://www.w3schools.com/howto/howto_css_contact_form.asp-->
<link rel="stylesheet" href="styles.css" type="text/css">
<link rel="stylesheet" href="./css/academicons.min.css"/>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
input[type=text], select, textarea {
width: 75%;
padding: 12px;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
button[type=submit] {
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
color: black;
}
button[type=submit]:hover {
}
<!--Commented to avoid overwriting the style keeping the top bar in check-->
<!--
.container {
border-radius: 5px;
padding: 20px;
}
-->
</style>
</head>
<body>
<br>
<div class="container">
<form action="https://formspree.io/f/xjvlaakl" method="POST">
<label for="email">Your email:</label>
<br>
<input type="text" id="email" name="email" placeholder="person@domain.com"><br>
<label for="message">Your message:</label>
<br>
<textarea id="mesasge" name="message" placeholder="Write your message here!" style="height:200px"></textarea>
<br>
<!-- your other form fields go here -->
<button type="submit">Send</button>
</form>
</div><br>
</body>