와이어 플레임 연습

B-2 대한투어

잭아저씨 2023. 2. 15. 15:10
<!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>
        <header id="header">
            <div id="header-inner">
                <div id="logo">
                    로고
                </div>
                <nav id="nav">
                    네비게이션
                </nav>
            </div>
        </header>
        <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="footer-inner">
                <div id="foot1">
                    Copyright
                </div>
                <div id="foot2">
                    <div id="manu1">
                        SNS
                    </div>
                    <div id="manu2">
                      패밀리사이트
                    </div>
                </div>
            </div>            
        </footer>
</body>
</html>
-----------------------------------------------------------------------------------------------------------------
@charset "utf-8";
*{
    margin:0;
    padding:0;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
#header{
    width: 100%;
    height: 100px;
    background-color: khaki
}
#header-inner{
    width: 1200px;
    height: 100px;
    background-color: whitesmoke;
    margin: 0 auto;
}
#header-inner>#logo{
    float:left;
    width: 200px;
    height: 100px;
    background-color: darkcyan;
}
#header-inner>#nav{
    float:left;
    width: 1000px;
    height: 100px;
    background-color: springgreen;
}
#slide{
    width: 1200px;
    height: 300px;
    background-color: silver;
    margin: 0 auto;
}
#contents{
    width: 1200px;
    height: 200px;
    background-color: indigo;
    margin: 0 auto;
}
#contents>#cont1{
    float: left;
    width: 480px;
    height: 200px;
    background-color: tomato;
    margin: 0 auto;
}
#contents>#cont2{
    float: left;
    width: 360px;
    height: 200px;
    background-color: darkred;
    margin: 0 auto;
}
#contents>#cont3{
    float: left;
    width: 360px;
    height: 200px;
    background-color: chartreuse;
    margin: 0 auto;
}
#footer{
    float: left;
    width: 100%;
    height: 100px;
    background-color: violet;
    margin: 0 auto;
}
#footer-inner{
    width: 1200px;
    height: 100px;
    background-color: skyblue;
    margin: 0 auto;
}
#footer-inner>#foot1{
    float: left;
    width: 1000px;
    height: 100px;
    background-color: springgreen;
    margin: 0 auto;
}
#footer-inner>#foot2{
    float: left;
    width: 200px;
    height: 100px;
    background-color: dodgerblue;
    margin: 0 auto;
}
#footer-inner>#foot2>#manu1{
    float: left;
    width: 200px;
    height: 50px;
    background-color: lightsalmon;
    margin: 0 auto;
}
#footer-inner>#foot2>#manu2{
    float: left;
    width: 200px;
    height: 50px;
    background-color: darkslategray;
    margin: 0 auto;
}

 

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

B-4 산업대학교  (0) 2023.02.15
B-3 세계의 미술작품  (0) 2023.02.15
B-1 대한은행  (0) 2023.02.15
A-4 유진건설  (0) 2023.02.15
A-3 강원천문대  (0) 2023.02.15