와이어 플레임 연습

C-1 해운대 빛축제

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

<!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>해운대 빛축제</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">
                    <div id="menu1">
                        하단 메뉴
                    </div>
                    <div id="menu2">
                        Copyright
                    </div>
                </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: aquamarine;

}
#header{
    float: left;
    width: 200px;
    height: 650px;
    background-color: blueviolet;
}
#header>#logo{
    float: left;
    width: 200px;
    height: 100px;
    background-color: blueviolet;
}
#header>#nav{
    float: left;
    width: 200px;
    height: 550px;
    background-color: crimson;
}
#main{
    float: left;
    width: 800px;
    height: 650px;
    background-color: antiquewhite;
}
#main>#slide{
    float: left;
    width: 800px;
    height: 350px;
    background-color: cyan;
}
#main>#contents{
    float: left;
    width: 800px;
    height: 200px;
    background-color: aliceblue;
}
#contents>#cont1{
    float: left;
    width: 320px;
    height: 200px;
    background-color: chartreuse;
}
#contents>#cont2{
    float: left;
    width: 240px;
    height: 200px;
    background-color: darkcyan;
}
#contents>#cont3{
    float: left;
    width: 240px;
    height: 200px;
    background-color: darkgray;
}
#main>#footer{
    float: left;
    width: 800px;
    height: 100px;
    background-color: coral;
}
#footer>#foot1{
    float: left;
    width: 200px;
    height: 100px;
    background-color: forestgreen;
}
#footer>#foot2{
    float: left;
    width: 600px;
    height: 100px;
    background-color: greenyellow;
}
#foot2>#menu1{
    width: 600px;
    height: 50px;
    background-color: gainsboro;
}
#foot2>#menu2{
    width: 600px;
    height: 50px;
    background-color: gold;
}

 

'와이어 플레임 연습' 카테고리의 다른 글

C-3 남도맛기행 축제  (0) 2023.02.22
C-2 부여 가을연꽃축제  (0) 2023.02.22
B-4 산업대학교  (0) 2023.02.15
B-3 세계의 미술작품  (0) 2023.02.15
B-2 대한투어  (0) 2023.02.15