Skip to main content

Learn How to Make a Linked Button on HTML5 and CSS3


Input:


<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Index</title>
    <style>
    .button{
    padding: 10px;
    background: #009578;
    border: none;
    outline: none;
    border-radius: 10px;
    color: #ffffff;
    }
    </style>
</head>
<body>
    <div>
        <button class="button" onclick="location.href='https://themultiplug.ml/'">Click Here</button>
    </div>
</body>
</html>

Output:

Index