-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path8d.html
More file actions
71 lines (71 loc) · 2.04 KB
/
8d.html
File metadata and controls
71 lines (71 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input class="firstname" type="text" placeholder="First Name">
<input class="lastname" type="text" placeholder="Last Name">
<div>
<input class="email" type="text" placeholder="Email">
<div>
</div>
<button class="signup"> Sign up</button>
<style>
.firstname{
padding-left: 8px;
padding-top: 8px;
margin-right: 4px;
padding-bottom: 8px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
margin-bottom: 8px;
border-radius: 0.2cm;
border-width: 0.2px;
border-color: rgb(200, 187, 187);
}
.lastname{
padding-left: 8px;
padding-top: 8px;
margin-right: 4px;
padding-bottom: 8px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
margin-bottom: 8px;
border-radius: 0.2cm;
border-width: 0.2px;
border-color: rgb(200, 187, 187);
}
.email{
padding-left: 8px;
padding-top: 8px;
padding-right: 184px;
margin-right: 4px;
padding-bottom: 8px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
margin-bottom: 8px;
border-radius: 0.2cm;
border-width: 0.2px;
border-color: rgb(200, 187, 187);
}
.signup{
padding-left:160px;
padding-top: 8px;
padding-right: 150px;
padding-bottom: 8px;
cursor: pointer;
background-color:rgb(12, 115, 189);
color:white;
border-radius: 0.2cm;
border:solid;
box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
}
</style>
</body>
</html>