-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
60 lines (55 loc) · 2.36 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
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<!--viewport declaration to not disable zooming/pinch to zoom in-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="inclusive, blog post, blog, agathe, badia, accessibility, a11y, contact">
<meta name="description" content="Contact page on Agathe's Blog">
<meta name="author" content="Agathe Badia">
<!--Load a font css-->
<link rel="stylesheet" href="fonts.css" media="none" onload="if(media!='all')media='all'">
<noscript>
<link rel="stylesheet" href="fonts.css">
</noscript>
<!--Load a main css for styling-->
<link rel="stylesheet" href="main.css" media="none" onload="if(media!='all')media='all'">
<noscript>
<link rel="stylesheet" href="main.css">
</noscript>
<!--Insert inclusive font, Serifs tend to differenciate characters, which is beneficial for dislexic -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;900&display=swap" rel="stylesheet"
type="text/css">
</head>
<html lang="en">
<body>
<div class="skip-to-main">
<a href="#main-contact">
Skip to main content
</a>
</div>
<nav>
<a href="index.html" class="navigation-link">Home</a>
<a href="index.html#main" class="navigation-link">Blog</a>
<a href="about.html" class="navigation-link">About</a>
<a href="contact.html" target="_top" class="navigation-link"><span class="visually-hidden">Current page</span>Contact</a>
</nav>
<main id="main-contact">
<form class="border-outline"
action="https://formspree.io/f/meqpnvgp" method="POST">
<h1 class="page-title">Contact me!</h1>
<div id="contact-form">
<div class="email-label-input">
<label for="email">Your email address: </label>
<input type="text" id="email" name="email" required="true" placeholder="[email protected]">
</div>
<div class="message-label-input">
<label for="message">Get in touch:</label>
<textarea type="text" id="message" name="message" required="true" minlength="50"></textarea>
</div>
<button id="send-contact-form-btn" type="submit">Send</button>
</div>
</form>
</main>
</body>
</html>