Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<style>
.container {
width: 60%;
height: 300px;
border: 5px solid gold;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body>
<div class="container">
<img src="https://images.unsplash.com/photo-1581974267369-3f2fe3b4545c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" alt="Image" />
</div>
</body>
</html>