-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12-display.html
More file actions
51 lines (46 loc) · 1.05 KB
/
12-display.html
File metadata and controls
51 lines (46 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>
GOOGLE
</title>
<style>
.first-name, .last-name, .email {
padding-top: 10px;
padding-bottom: 10px;
font-size: 16px;
font-family: Roboto;
border-radius: 8px;
border-style: solid;
border-width: 1px;
margin-bottom: 15px;
width: 150px;
padding-left: 15px;
margin-left: 3px;
}
.email {
display: block;
width: 326px;
}
.signup {
font-size: 18px;
color: white;
border-style: none;
padding-top: 15px;
padding-bottom: 15px;
width: 348px;
border-radius: 15px;
background-color: rgb(0, 97, 208);
cursor: pointer;
}
</style>
</head>
<body>
<input type="text" placeholder="First name" class="first-name">
<input type="text" placeholder="Last name" class="last-name">
<input type="text" placeholder="Email" class="email">
<button class="signup">
Sign Up
</button>
</body>
</html>