영상보고 따라했는데 색 없이 흰 바탕만 나와요ㅠㅠ
<html>
<head>
<title>그랩마켓</title>
<link herf="index.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="header"></div>
<div id="body"></div>
<div id="footer"></div>
</body>
</html>
여긴 css에요
#header {
height: 64px;
background-color: black;
}
#body {
height: 100%;
background-color: blue;
}
#footer {
height: 200px;
background-color: red;
}