HTMLify

Brook
Views: 44 | 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-color: whitesmoke;
            margin: 0;
            padding: 0;
        }
        h2{
            background-color: aliceblue;
        text-align: inherit;
       border-style: inset;
       border-radius: 4px;
       margin: 8px;
       padding: 8px;
       max-width: 800px;

        }
        button{
       
       border-style: inset;
       font-size: 22px;
       border-radius: 4px;
       margin: 4px;
       padding: 2px 24px 2px 24px ;
       float: left;
   }
   button:hover{
       background-color: rgba(152, 251, 152, 0.632);}
        footer{
           text-align: center;
           padding: 10px;
           font-size: 14px;
   }
   .submit{
       font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

   }

    </style>
</head>
<body>
    <header></header>
    <main>
        <H2>
            hello bro , how was your day?."
        </H2>
      
    </main>
</body>
</html>

Comments