-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscribe.html
60 lines (34 loc) · 1.13 KB
/
Subscribe.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
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Website</title>
<link rel="stylesheet" href="CSS/Subscribe.css">
</head>
<body>
<div class="homepage">
<div class="header">
<ul>
<li><a href="Index.html"> Home</a></li>
<li><a href="Blogpost.html"> Blog</a></li>
<li><a href="Merchandise.html"> Merchandise</a></li>
<li><a href="Subscribe.html"> Subscribe</a></li>
</ul>
<h1> You Glow Girl!</h1>
</div>
<div class="content">
<form action="action_page.php">
<div class="container">
<h1> Never Miss Out On New Content </h1>
<h2> Sign Up to Receive Exclusive Discounts!</h2>
<input type="text" placeholder="Full Name" name="Name" required> <br>
<input type="text" placeholder="Email address" name="email" required> <br>
<input type="submit" value="Subscribe">
</div>
</div>
</form>
<div class="footer"> @Copyright | Contact | About |</div>
</div>
</body>
</html>