HTMLify

demo02
Views: 28 | 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;
            color: #FFF7F8;
            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;
        }
        
        main { 
           
            margin-top: 20px;
            
        }
        .content{
            border: 2px groove #FFF7F8;
            padding: 1.3em;
            
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
           
            margin: 30px;
           
        }
        .com{
            text-align: end;
        }
    </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>
    <main>
        <div class="content">
            <h3>index.html</h3>
            <h3>
                Ownder: <strong>cody</strong>
            </h3>
            <p>Views: 200k</p>
            <h4 class="com">COmments:0</h4>
        </div>
    </main>
</body>
</html>

Comments