crucialnet/contact-me/index.html

55 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145317366-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-145317366-1');
</script>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta charset="UTF-8">
<title>Contact Form</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="https://www.crucialnet.org" class="main-page">Back to the main page</a>
<section class="contact-section rainbow">
<h1 class="title">LET'S TALK</h1>
<form class="contact-form row" action="https://formspree.io/r@crucialnet.org" method="POST">
<div class="form-field col x-50">
<input id="name" class="input-text js-input" type="text" name="name" required>
<label class="label" for="name">Name</label>
</div>
<div class="form-field col x-50">
<input id="email" class="input-text js-input" type="text" name="email" required>
<label class="label" for="email">Email</label>
</div>
<div class="form-field col x-100">
<textarea id="email" class="input-text js-input" rows="5" name="message" required></textarea>
<label class="textarea" for="message">Message</label>
</div>
<div class="form-field col x-100">
<input type="submit" class="submit-btn">
</div>
</form>
</section>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/main.js"></script>
</body>
</html>