-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons.html
More file actions
48 lines (44 loc) · 858 Bytes
/
buttons.html
File metadata and controls
48 lines (44 loc) · 858 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
<style>
.sub-button{
background-color: rgb(200, 0, 0);
color: white;
border: none;
height: 35px;
width: 105px;
border-radius: 5px;
cursor: pointer;
margin-right: 8px;
}
.join-button{
background-color: white;
color: rgb(50, 6, 245) ;
border-color: rgb(50, 6, 245) ;
border-style: solid;
border-width: 1px;
height: 36px;
width: 100px;
border-radius: 10px;
cursor: pointer;
margin-right: 8px;
}
.tweet-button{
background-color:black;
color: white;
border: none;
border-radius: 35px;
height: 36px;
width: 80px;
cursor: pointer;
font-weight: bold;
font-size: 15px;
}
</style>
<button class="sub-button">
SUSCRIBE
</button>
<button class="join-button">
JOIN NOW !!!
</button>
<button class="tweet-button">
Tweet
</button>