blob: cdf1030151c997e5dc2a9094defc3c825116e363 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<title>Mark's Kitchen - Email</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<div>
<h1>
<a class="navigation" href="/" title="marks.kitchen"><</a>
Email
</h1>
<p>Sign up to receive Mark's email newsletter</p>
<div class="form">
<form action="/email" method="post" enctype="application/x-www-form-urlencoded">
<input type="text" placeholder="Your name" name="name" required>
<input type="email" placeholder="Your email" name="email" required>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>
|