와이어 플레임 연습

B-4 산업대학교

잭아저씨 2023. 2. 15. 15:12
<!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">
                    <div id="manu1">
                        하단 메뉴
                    </div>
                    <div id="manu2">
                        Copyright
                    </div>
                </div>
                <div id="foot2">
                    패밀리사이트
                </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: darkolivegreen
}
#header-inner{
    width: 1200px;
    height: 100px;
    background-color: darkgoldenrod;
    margin: 0 auto;
}
#header-inner>#logo{
    float:left;
    width: 200px;
    height: 100px;
    background-color: darkmagenta;
}
#header-inner>#nav{
    float:left;
    width: 1000px;
    height: 100px;
    background-color: coral;
}
#slide{
    width: 1200px;
    height: 300px;
    background-color: yellow;
    margin: 0 auto;
}
#contents{
    width: 1200px;
    height: 200px;
    background-color: hotpink;
    margin: 0 auto;
}
#contents>#cont1{
    float: left;
    width: 480px;
    height: 200px;
    background-color: mediumseagreen;
    margin: 0 auto;
}
#contents>#cont2{
    float: left;
    width: 360px;
    height: 200px;
    background-color: mediumaquamarine;
    margin: 0 auto;
}
#contents>#cont3{
    float: left;
    width: 360px;
    height: 200px;
    background-color: mediumpurple;
    margin: 0 auto;
}
#footer{
    float: left;
    width: 100%;
    height: 100px;
    background-color: blue;
    margin: 0 auto;
}
#footer-inner{
    width: 1200px;
    height: 100px;
    background-color: black;
    margin: 0 auto;
}
#footer-inner>#foot1{
    float: left;
    width: 1000px;
    height: 100px;
    background-color: navajowhite;
    margin: 0 auto;
}
#footer-inner>#foot1>#manu1{
    float: left;
    width: 1000px;
    height: 50px;
    background-color: seagreen;
    margin: 0 auto;
}
#footer-inner>#foot1>#manu2{
    float: left;
    width: 1000px;
    height: 50px;
    background-color: antiquewhite;
    margin: 0 auto;
}
#footer-inner>#foot2{
    float: left;
    width: 200px;
    height: 100px;
    background-color: coral;
    margin: 0 auto;
}
 

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

C-2 부여 가을연꽃축제  (0) 2023.02.22
C-1 해운대 빛축제  (0) 2023.02.22
B-3 세계의 미술작품  (0) 2023.02.15
B-2 대한투어  (0) 2023.02.15
B-1 대한은행  (0) 2023.02.15