-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
32 lines (28 loc) · 1011 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<title>Fake door</title>
</head>
<body>
<div>
<h1>Fake door</h1>
<p class="cta">Sign up to stay notified and apply to become a beta tester.</p>
<form action="">
<label for="email">Email address</label>
<input type="email" placeholder="Enter your email address" required>
<button>Notify me</button>
</form>
</div>
<p class="credits">Photo by <a
href="https://unsplash.com/@tama66?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Peter
Herrmann</a> on <a
href="https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
</p>
<script src="js/index.js" type="module"></script>
</body>
</html>