HTMLify

index.html
Views: 127 | Author: cody
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Buttons</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link
            href="https://fonts.googleapis.com/css2?family=Mulish&display=swap"
            rel="stylesheet"
            type='text/css'
        >
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <span class="background">
            <a
                href="https://learning.atheros.ai"
                class='button'
            >
                <svg>
                    <rect
                        x="0" y="0" 
                        fill="none"
                        width="100%"
                        height="100%"
                    />
                </svg>
                Learn
            </a>            
        </span>
    </body>
</html>

Comments