블로그이사하기/webstoryboy
싸이트 만들기 2
Or71nH
2021. 1. 12. 15:43
오!! 나눠졋어
webstoryboy.html
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="author" content="TOPKnell">
<meta name="description" content="처음 웹사이트 만드는중">
<meta name="keywords" content="웹,웹만들기,처음">
<title>TopKnell</title>
<!-- style -->
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id= "wrap">
<div id = "header"></div>
<div id = "contents"></div>
<div id = "footer"></div>
</div>
</body>
</html>
style.css
/* layout */
#wrap {width: 100%; }
#header {width: 100%; height: 327px; background-color: #999;}
#contents {width: 100%; height: 400px; background-color: #888;}
#footer {width: 100%; height: 200px; background-color: #555;}
reset.css