-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.Button_Ex1_CSS.html
More file actions
68 lines (59 loc) · 1.31 KB
/
Copy path4.Button_Ex1_CSS.html
File metadata and controls
68 lines (59 loc) · 1.31 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
<style>
.getstarted-button{
background-color: rgb(121, 82, 179);
color:white;
border:none;
height:50px;
width:140px;
border-radius: 4px;
font-weight: bold;
margin-right: 8px;
cursor:pointer;
}
.download-button{
background-color: white;
color:grey;
height:50px;
width:140px;
border-radius: 4px;
font-weight: bold;
border-color: grey;
margin-right:8px;
border-style: solclid;
cursor:pointer;
}
.website-button{
background-color: rgb(10,102,194);
color:white;
height:50px;
width:250px;
font-weight: bold;
border:none;
border-radius: 30px;
margin-right: 8px;
cursor:pointer;
}
.save-button{
background-color: white;
color:rgb(10,102,194);
height:50px;
width:100px;
border-color: rgb(10,102,194);
border-radius: 30px;
font-weight: bold;
border-style: solid;
cursor:pointer;
}
</style>
<button class="getstarted-button">
Get started
</button>
<button class="download-button">
Download
</button>
<button class="website-button">
Apply on company website
</button>
<button class="save-button">
Save
</button>