-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribe form.html
executable file
·43 lines (39 loc) · 1.33 KB
/
subscribe form.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
<!-- https://codepen.io/sdcrowe23/pen/BeMoGZ
modified by Olivia Zhao May 6, 2022-->
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Fidelity - Subscribe Form</title>
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<link rel="stylesheet" href="./styles/subscribe.css">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/playlist.css">
</head>
<body>
<header>
<nav>
<a class="button" href="./index.html">Back to home</a>
</nav>
</header>
<!-- partial:index.partial.html -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css" integrity="sha384-i1LQnF23gykqWXg6jxC2ZbCbUMxyw5gLZY6UiUS98LYV5unm8GWmfkIS6jqJfb4E" crossorigin="anonymous">
<div class="wrapper">
<form action="#" class="card-content">
<div class="container">
<div class="image">
<i class="fas fa-envelope"></i>
</div>
<h1>Subscribe</h1>
<p>Hi. If you like the playlists I made, you can subscribe here.</p>
</div>
<div class="form-input">
<label for="email"></label>
<input type="email" placeholder="Your Email">
<button class="subscribe-btn">Subscribe</button>
</div>
</form>
</div>
<!-- partial -->
</body>
</html>