<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/assets/reset.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<section>
<img src="tim.jpg" alt="Tim Berners-Lee at a computer.">
</section>
<section>
<img src="tim.jpg" alt="Tim Berners-Lee at a computer.">
</section>
</body>
</html>
body, section { padding: 20px; }
section {
background-color: gold;
height: 40vh;
}
section:not(:first-child) { margin-top: 20px;}
img {
background-color: orange;
height: 100%;
width: 100%;
}
section:first-child img {
object-fit: contain;
object-position: left top;
}
section:last-child img {
object-fit: cover;
object-position: right center;
}