JSFiddle - React, Tailwind, and code Playground

by nilgundag

HTML

<a href="#" class="button button-primary">Biletler Tükendi</a>
<a href="#" class="button button-secondary">Hemen Başla</a>
<a href="#" class="button button-ternary">Abone Ol</a>

CSS

.button{
    display: inline-block;
    font-size : 12px;
    font-weight : bold;
    color : white;
    border-radius : 4px;
    padding: 10px;
    text-decoration: none;
}

.button-primary{
    background: red;
}

.button-secondary{
    background: black;
}
.button-ternary{
    background: blue;
}