Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.box {
width: 300px;
height: 250px;
border: 5px solid gold;
background-image: url("https://images.unsplash.com/photo-1582093236149-516a8be696fe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60");
background-size: contain; /* try other properties here like cover, contain, etc */
background-repeat: no-repeat;
background-position: 50% 50%;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>