JSFiddle - React, Tailwind, and code Playground
by kevinjazzmaster
HTML
<body>
<div class="wrapper">
<a id="myButton" class="button" href="https://musicchoice.com/">Click Here</a>
</div>
</body>
CSS
body{
background: white;
}
.wrapper{
margin-top: 50px;
}
.button{
border: 3px solid red;
padding-left: 50px;
padding-bottom: 30px;
padding-top:30px;
padding-right:50px;
color:white;
background: black;
text-align: center;
text-decoration:none;
}
JavaScript
/* document.getElementById("myButton").onclick = function () {
window.location.replace("http://webplayer.musicchoice.com");
};