-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7f.html
More file actions
48 lines (47 loc) · 1.19 KB
/
7f.html
File metadata and controls
48 lines (47 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=>, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p class="email">Email</p>
<input class="box" type="text">
<p class="detail">By clicking Agree & Join, you agree to our Privacy Policy.</p>
<button class="button">Agree & Join</button>
<style>
body{
text-align: center;
}
.email{
color:gray;
margin-bottom: 3px;
}
.box{
border-color: grey;
border-radius: 0.1cm;
cursor: pointer;
}
.detail{
color:rgb(90, 88, 88);
font-size: 14px;
}
.button{
padding-left: 58px;
padding-top: 8px;
padding-bottom: 8px;
padding-right: 58px;
cursor:pointer;
color: white;
background-color: rgb(57, 132, 223);
border:none;
border-radius: 18px;
transition:background-color 0.2s;
}
.button:hover{
background-color: rgb(17, 104, 211);;
}
</style>
</body>
</html>