-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkedin.html
More file actions
52 lines (45 loc) · 999 Bytes
/
Copy pathlinkedin.html
File metadata and controls
52 lines (45 loc) · 999 Bytes
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
<!DOCTYPE html>
<head>
<title>LinkedIn</title>
<style>
.email {
font-size: 15px;
font-family: arial;
color: rgb(86, 83, 83);
margin-top: 10px;
margin-bottom: 15px;
}
.email-box {
padding: 6px;
width: 350px;
border-color: black;
border-radius: 3px;
margin-top: 0px;
margin-bottom: 15px;
}
.text {
font-size: 15px;
font-family: arial;
color: rgb(86, 83, 83);
margin-top: 0px;
margin-bottom: 20px;
}
.button {
color: white;
background-color: rgb(9, 9, 170);
width: 300px;
border-radius: 20px;
border: none;
padding: 10px;
font-size: 15px;
margin-top: 0px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<p class="email">Email</p>
<input class="email-box" type="text">
<p class="text">By clicking Agree & Join, you agree to the Privacy Policy.</p>
<button class="button">Agree & Join</button>
</body>