-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 1.31 KB
/
index.html
File metadata and controls
55 lines (49 loc) · 1.31 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
}
.registration-container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
font-size: 24px;
margin-right: 10px;
}
input[type="email"] {
padding: 10px;
margin: 0 10px;
border: 1px solid white;
background-color: transparent;
color: white;
}
button {
padding: 10px 20px;
border: none;
background-color: white;
color: black;
cursor: pointer;
}
button:hover {
background-color: #ccc;
}
</style>
</head>
<body>
<form id="email-registration" action="/" method="post">
<div class="registration-container">
<h1>SIGN UP FOR OUR DAILY INSIDER</h1>
<input type="email" name="email" placeholder="Enter your email">
<button>Subscribe</button>
</div>
</form>
</body>
</html>