htmlyCssCurso/buttons.html

39 lines
960 B
HTML

<style>
.subscribe-button{
background-color:rgb(200,0,0);
color: white;
border: none;
height: 36px;
width: 105px;
border-radius: 2px;
cursor: pointer;
margin-right:8px;
}
.join-button{
background-color:white;
border-color: rgb(40,118,200);
border-style: solid;
border-whidth: 1px;
color: rgb(40,118,200);
height: 36px;
width: 62px;
border-radius: 2px;
cursor: pointer;
}
.tweet-button{
background-color: rgb(2,137,255);
color: white;
border: none;
height:36px;
width:74px;
border-radius: 18px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
margin-left: 8px;
}
</style>
<button class="subscribe-button"> SUBSCRIBE </button>
<button class="join-button"> JOIN </button>
<button class="tweet-button"> tweet</button>