generated from delayrider/my-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign-up.html
56 lines (51 loc) · 2.06 KB
/
sign-up.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
<!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">
<meta name="descrpition" content="Moon Meditation meditating with the lunar phases">
<meta name="keywords" content="moon meditation, meditating with the lunar phases">
<meta name="theme-color" content="rgba(173,136,131, 0.8)">
<meta name="description" content="meditating with the lunar phases">
<link rel="stylesheet" href="assets/css/style.css">
<title>Moon Meditation</title>
</head>
<body>
<div id="hero-image">
<header>
<a href="index.html" id="logo">
<h1>Moon Meditation</h1>
</a>
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="moon-phases.html">Lunar Phases</a></li>
<li><a href="more-info.html">More Info</a></li>
<li><a href="sign-up.html" class="active">Sign Up</a></li>
</ul>
</nav>
</header>
<div id="description-box">
<p>Join our community</p>
</div>
</div>
<div class="sign-up-header">
<h2>Sign Up to our Newsletter</h2>
<p>For each new lunar cycle you will recieve precious information like: what sign the moon is in, useful
mediation and ritual tips and much more.</p>
</div>
<form method="POST" class="sign-up-form">
<label for="fname">First Name</label>
<input class="text-input" type="text" id="fname" name="fname" required>
<label for="lname">Last Name</label>
<input class="text-input" type="text" id="lname" name="lname" required>
<label for="email">Email Address</label>
<input class="text-input" type="email" name="email" id="email">
<input type="submit" id="form-button" value="Sign me up!">
</form>
<footer class=" footer">
<p>copyright MOON MEDITATION 2022</p>
</footer>
</body>
</html>