와이어 플레임 연습

C-4 Vallery Festival

잭아저씨 2023. 2. 22. 15:33

<!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">
    <link rel="stylesheet" href="./css/style.css">
    <title>Vallery Festival</title>
</head>
<body>
    <div id="wrap">
        <header id="header">
            <div id="logo">
                로고
            </div>
            <div id="nav">
                네비게이션
            </div>  
        </header>
        <main id="main">
            <div id="slide">
                슬라이드
            </div>  
            <div id="contents">
                <div id="cont1">
                    공지사항
                </div>
                <div id="cont2">
                    갤러리
                </div>
                <div id="cont3">
                    바로가기
                </div>
            </div>
            <footer id="footer">
                <div id="foot1">
                    로고
                </div>
                <div id="foot2">
                    Copyright
                </div>
                <div id="foot3">
                    패밀리 사이트
                </div>
            </footer>
        </main>
    </div>
</body>
</html>
 

----------------------------------------------------------------------------------------------------------------

*{
    margin:0;
    padding:0;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
#wrap{
    width: 1000px;
    height: 650px;
    background-color: bisque;
}
#header{
    float: left;
    width: 200px;
    height: 650px;
    background-color: brown;
}
#header>#logo{
    float: left;
    width: 200px;
    height: 100px;
    background-color: navajowhite;
}
#header>#nav{
    float: left;
    width: 200px;
    height: 550px;
    background-color: magenta;
}
#main{
    float: left;
    width: 800px;
    height: 650px;
    background-color: moccasin;
}
#main>#slide{
    float: left;
    width: 800px;
    height: 350px;
    background-color: midnightblue;
}
#main>#contents{
    float: left;
    width: 800px;
    height: 200px;
    background-color: mintcream;
}
#contents>#cont1{
    float: left;
    width: 320px;
    height: 200px;
    background-color: mediumspringgreen;
}
#contents>#cont2{
    float: left;
    width: 240px;
    height: 200px;
    background-color: maroon;
}
#contents>#cont3{
    float: left;
    width: 240px;
    height: 200px;
    background-color: yellow;
}
#main>#footer{
    float: left;
    width: 800px;
    height: 100px;
    background-color: khaki;
}
#footer>#foot1{
    float: left;
    width: 180px;
    height: 100px;
    background-color: limegreen;
}
#footer>#foot2{
    float: left;
    width: 440px;
    height: 100px;
    background-color: lawngreen;
}
#footer>#foot3{
    float: left;
    width: 180px;
    height: 100px;
    background-color: lightgray;
}