질문있습니다.
실행을 해봤을때 css가 실행되지 않습니다.
경로 문제인거같은데, background-image가 안불러와집니다.
<!DOCTYPE html>
<html>
<head>
<meta sharset="UTF-8">
<title>hi</title>
<link rel="stylesheet" herf="CSS/main.css">
</head>
<body>
<div class="main-background">
<div class="main-title-box">
<h4 class="main-title">Buy our shoes!</h4>
</div>
<button class="main-button">Buy Now</button>
</div>
</body>
</html>
-------------------------------------
.main-background {
width: 100%;
height: 500px;
background-image: url(../img/qwer.jpg);
background-size: 100%;
background-repeat:no-repeat;
}
.main-title {
color: floralwhite;
text-align: center;
font-size: 30px;
}
.main-title-box {
margin-top: 150px;
}