Я не могу найти ошибку в коде, которая не позволяет мне вывести изображение на сайте.
html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles.css">
<title>Document</title>
</head>
<body>
<header class="showcase">
<div class="showcase-top">
<img src="" alt="Netflix">
<a href="#" class="btn btn-rounded"></a>
</div>
<div class="showcase-content">
<h1>See what's next</h1>
<p>Watch anywhere. Cancel anytime</p>
<a href="#" class="btn btn-xl">
Watch Free For 30 Days <i class="fas fa-chevron-right btn-icon"></i>
</a>
</div>
</header>
<script src="https://kit.fontawesome.com/fc052c458b.js" crossorigin="anonymous"></script>
</body>
</html>
css:
:root {
--primary-color: #e50914;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Arial', sans-serif;
-webkit-font-smoothing: antialised;
background: #000;
color: #999;
}
ul {
list-style: none;
}
h1, h2, h3, h4 {
color: #fff;
}
a {
color: #fff;
text-decoration: none;
}
p {
margin: 0.5 rem 0;
}
img {
width: 100%;
}
.showcase {
width: 100%;
height: 93vh;
position: relative;
background: url('img/safe_image.jpg') no-repeat center center/cover;
}