
<!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>JUST 쇼핑몰</title>
</head>
<body>
<div id="wrap">
<header id="header">
<div id="logo">
로고
</div>
<nav id="nav">
네비게이션
</nav>
</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="logo">
로고
</div>
<div id="Copyright">
Copyright
</div>
<div id="SNS">
SNS
</div>
</footer>
</div>
</body>
</html>
-----------------------------------------------------------------------------------------------------------------------------------------------------
@charset "utf-8";
*{
margin:0;
padding:0;
}
ul{
list-style-type: none;
}
a{
text-decoration: none;
}
#wrap{
width:1200px;
height:700px;
background-color: aqua;
margin:0 auto;
/* 가운데 정렬*/
}
#header{
width: 1200px;
height: 100px;
background-color: aquamarine;
}
#header>#logo{
float:left; /*왼쪽부터 가로배치*/
width: 200px;
height: 100px;
background-color: coral;
}
#header>#nav{
float: left; /*왼쪽부터 가로배치*/
width: 1000px;
height: 100px;
background-color: cornflowerblue;
}
#slide{
width: 1200px;
height: 300px;
background-color: burlywood;
}
#contents{
width: 1200px;
height: 200px;
background-color: chartreuse;
}
#contents>#cont1{
float: left;
width: 480px;
height: 200px;
background-color: darkcyan;
}
#contents>#cont2{
float: left;
width: 360px;
height: 200px;
background-color: darkgoldenrod;
}
#contents>#cont3{
float: left;
width: 360px;
height: 200px;
background-color: darkkhaki;
}
#footer{
width: 1200px;
height: 100px;
background-color: chocolate;
}
#footer>#logo{
float: left;
width: 200px;
height: 100px;
background-color: darkorange;
}
#footer>#Copyright{
float: left;
width: 800px;
height: 100px;
background-color: darksalmon;
}
#footer>#SNS{
float: left;
width: 200px;
height: 100px;
background-color: darkseagreen;
}
'와이어 플레임 연습' 카테고리의 다른 글
B-2 대한투어 (0) | 2023.02.15 |
---|---|
B-1 대한은행 (0) | 2023.02.15 |
A-4 유진건설 (0) | 2023.02.15 |
A-3 강원천문대 (0) | 2023.02.15 |
A-2 Green복지재단 (0) | 2023.02.15 |