티스토리 뷰

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
             margin: 0;
             padding: 0;
         }
         #wrap {
             width: 100%;
             
         }
         #header {
             width: 100%;
             height: 100px;
             background-color: #e0f2f1;
         }
         #banner {
            width: 100%;
            height: 300px;
            background-color: #80cbc4;
         }
         #contents {
             width: 100%;
             height: 580px;
             background-color: #26a69a;
         }
         #footer {
             width: 100%;
             height: 100px;
             background: #00897b;
         }
         .header-container {
             width: 1200px;
             height: 100px;
             background-color: #b2dfdb;
             margin: 0 auto;
         }
         .banner-container {
             width: 1200px;
             height: 300px;
             background-color: #4db6ac;
             margin: 0 auto;
         }
         .contents-container {
             width: 1200px;
             height: 580px;
             background-color: #009688;
             margin: 0 auto;
         }
         .footer-container {
             width: 1200px;
             height: 100px;
             background-color: #00796b;
             margin: 0 auto;
         }
    </style>
</head>
<body>
    <div id="wrap">
        <header id="header">
            <div class="header-container"></div>
        </header>
        <article id="banner">
            <div class="banner-container"></div>
        </article>
        <section id="contents">
            <div class="contents-container"></div>
        </section>
        <footer id="footer">
            <div class="footer-container"></div>
        </footer>
    </div>
</body>
</html>
댓글
© 2018 webstoryboy