yuki/contact.html

42 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rampart+One&family=Shantell+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="me" href="https://groupe-tazor.com/@Yuki">
<link rel="me" href="https://im-in.space/@Yuki">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<title>contact - Yuki's website</title>
</head>
<body>
<main>
<h1>Send a message</h1>
<form action="/thanks.html" name="contact" method="POST" netlify netlify-honeypot="bot">
<p>
<label for="name">Name</label>
<br/><input type="text" name="name" />
</p>
<p>
<label for="email">Email</label>
<br/><input type="email" name="email" />
</p>
<p>
<label for="message">Message</label>
<br/><textarea name="message" rows="6"></textarea>
</p>
<p title="Which means, don't type anything here">
<label for="bot">If you're a bot, type something here</label>
<br/><input type="text" name="bot" />
</p>
<p class="center">
<button type="submit">Submit</button>
</p>
</form>
<a href=".">go back</a>
</main>
</body>
</html>