20.10.19 09:30 작성
·
151
0
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#header {width:500px; border:1px solid #cccccc; font-size: 2em; font-weight:bold; text-align: center;}
#wrap{width:500px; border:1px solid #cccccc; overflow: hidden;}
#content {float:left; border:1px solid #cccccc;}
#side_banner {float:left;border:1px solid #cccccc;}
#footer {width:500px; border:1px solid #cccccc; font-size: 2em; font-weight:bold; text-align: center; background-color: azure;}
</style>
</head>
<body>
<div id="header">
header
</div>
<div id="wrap">
<div id="content"></div>
<ul>
<li>menu1</li>
<li>menu2</li>
<li>menu3</li>
<li>menu4</li>
<li>menu5</li>
</ul>
<div id="side_banner"></div>
<img src="#"/>
</div>
<div id="footer">
footer
</div>
</body>
</html>