HTMLify

joke
Views: 27 | Author: light
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        
        body {
            /* background-image: url(https://c4.wallpaperflare.com/wallpaper/619/622/511/blue-archive-shiroko-blue-archive-anime-girls-hd-wallpaper-preview.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;*/
            color: rgb(0, 162, 255); 
            text-align: center;
           
            margin: 0;
        }

      a{
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff80;
            color: rgb(219, 100, 44);
            text-decoration: none;
            font-size: 1.4em;
            border-radius: 5px;
            
            cursor: pointer;
        }

      
    </style>
</head>
<body>
    <h1>I have to build something!</h1>
    <p>NO! CHOICE!</p>

    <main>
        <h2>ORDER</h2>
        <p> build something</p>
        <h3>YES!</h3>

        <a href="https://tenor.com/hAbw5mlyDNf.gif" >Here, check out</a>
    </main>
</body>
</html>

Comments