25 März Wie man einen einfachen Button erstellt:
HTML:
<div>
<a href=“https://www.weloveyou.ch“>Visit Us</a>
</div>
—————————————————————-
CSS:
div{
height: 50px;
width: 120px;
border-color: #6495ED;
background-color: #BCD2EE;
border-style: dashed;
border-width: 2px;
border-radius: 5px;
margin: auto;
text-align: center;
}
a{
text-decoration: none;
color: #000000;
font-family: Verdana;
font-size: 25px;
}
No Comments