웹/Layout

[Layout] Layout - 4

구하천포 2019. 1. 5. 18:12

Layout

Layout04

결과물



코드

<!DOCTYPE html>
<html lang="ko-KR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Layout04</title>

    <style>
        body {
            background: #ffe0b2;
        }

        #wrap {
            width: 800px;
            height: 900px;
            margin: 0 auto; 
            color: #fff; 
            font-size: 40px; 
            text-align: center;
        }

        #header {
            width: 100%;
            height: 100px;
            line-height: 100px;
            background: #ef6c00;
        }

        #nav {
            width: 100%;
            height: 100px;
            line-height: 100px;
            background: #f57c00;
        }

        #side {
            float: left;
            width:30%;
            height: 600px;
            line-height: 600px;
            background: #fb8c00;
        }

        #contents-1{
            float: left;
            width:70%;
            height: 300px;
            line-height: 300px;
            background: #ff9800;
        }

        #contents-2{
            float: left;
            width:70%;
            height: 300px;
            line-height: 300px;
            background: #ffa726;
        }

        #footer{
            float: left;
            width: 100%;
            height: 100px;
            line-height: 100px;
            background: #ffb74d;
        }
    </style>
</head>

<body>
    <div id="wrap">
        <div id="header">HEADER</div>
        <div id="nav">NAV</div>
        <div id="side">SIDE</div>
        <div id="contents-1">CONTENT1</div>
        <div id="contents-2">CONTENT2</div>
        <div id="footer">FOOTER</div>
    </div>
</body>
</html>