-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path8d.html
More file actions
68 lines (62 loc) · 1.48 KB
/
8d.html
File metadata and controls
68 lines (62 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign-Up form</title>
<style>
.first{
border-style:solid;
border-color: rgb(200, 200, 200);
width:150px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
border-radius:8px;
border-width:1px;
}
.last{
border-style:solid;
border-color: rgb(200, 200, 200);
width:150px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
border-radius:8px;
border-width:1px;
margin-right:1px;
}
.email{
border-style:solid;
border-color: rgb(200, 200, 200);
display:block;
margin-top:10px;
width:318px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
border-radius:8px;
border-width:1px;
margin-right:1px;
margin-bottom:10px;
}
.sign-up{
font-weight:bold;
display:block;
width:331px;
padding-top:12px;
padding-bottom:12px;
color:white;
border:none;
background-color: rgb(57, 117, 233);
border-radius:5px;
}
</style>
</head>
<body>
<input class="first" type="text" placeholder="First name" >
<input class="last" type="text" placeholder="Last name" >
<input class="email" type="text" placeholder="Email" >
<button class="sign-up">Sign Up</button>
</body>
</html>