qzm
4/27/2016 - 9:20 AM

link button

link button

<!DOCTYPE html>
<html>
    <head>
        <style>
            a:link,
            a:visited {
                background-color: #f44336;
                color: white;
                padding: 14px 25px;
                text-align: center;
                text-decoration: none;
                display: inline-block;
            }
            a:active,
            a:hover {
                background-color: red;
            }

        </style>
    </head>
    <body>

        <a href="default.asp" target="_blank">This is a link</a>

    </body>
</html>