와이어 플레임 연습
C-2 부여 가을연꽃축제
잭아저씨
2023. 2. 22. 15:31
<!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">
Copyright
</div>
<div id="foot2">
<div id="menu1">
SNS
</div>
<div id="menu2">
패밀리 사이트
</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: aquamarine;
}
#header>#logo{
float: left;
width: 200px;
height: 100px;
background-color: blue;
}
#header>#nav{
float: left;
width: 200px;
height: 550px;
background-color: burlywood;
}
#main{
float: left;
width: 800px;
height: 650px;
background-color: chartreuse;
}
#main>#slide{
float: left;
width: 800px;
height: 350px;
background-color: coral;
}
#main>#contents{
float: left;
width: 800px;
height: 200px;
background-color: cornsilk;
}
#contents>#cont1{
float: left;
width: 320px;
height: 200px;
background-color: darkmagenta;
}
#contents>#cont2{
float: left;
width: 240px;
height: 200px;
background-color: darkgoldenrod;
}
#contents>#cont3{
float: left;
width: 240px;
height: 200px;
background-color: darkgreen;
}
#main>#footer{
float: left;
width: 800px;
height: 100px;
background-color: floralwhite;
}
#footer>#foot1{
float: left;
width: 600px;
height: 100px;
background-color: fuchsia;
}
#footer>#foot2{
float: left;
width: 200px;
height: 100px;
background-color: gold;
}
#foot2>#menu1{
width: 200px;
height: 50px;
background-color: grey;
}
#foot2>#menu2{
width: 200px;
height: 50px;
background-color:hotpink;
}