HTMLify

demo
Views: 22 | Author: light
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Demo</title>

    <style>
        body {
            background-color: #415a77;
            margin: 0;
            padding: 0;
            /* font-family: 'Courier New', Courier, monospace; */
        }
        header {
            color: #e0e1dd;
            text-align: center;
            text-shadow: 2px 2px 2px #0d1b2a;
            border-bottom: 2px groove;
            padding: 10px;
        }
        nav {
            text-align: center;
            margin-top: 10px;
        }
        button {
            background-color: #1b263b;
            border: none;
            /* color: #FED9B7; */
            padding: 10px 20px;
            margin: 5px;
            cursor: pointer;
            border-radius: 5px;
        }
        button a {
            text-decoration: none;
            color: #FFF7F8;
            font-weight: bold;
        }
        button:hover {
            background-color: #0d1b2a;
        }
    </style>
</head>
<body>
  
    <header>
        <h1>HTMLify your dreams</h1>
    </header>

    <nav>
        <button><a href="https://htmlify.artizote.com/">Home</a></button>
        <button><a href="https://htmlify.artizote.com/action/logout">Log out</a></button>
        <button><a href="https://htmlify.artizote.com/notifications">Notifications</a></button>
        <button><a href="https://htmlify.artizote.com/dashboard">Dashboard</a></button>
        <button><a href="https://htmlify.artizote.com/frames">Frames</a></button>
        <button><a href="https://htmlify.artizote.com/api">API</a></button>
    </nav>

</body>
</html>

Comments