index.html
style.css
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/assets/styles/reset.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<figure>
<img src="tim.jpg" alt="Tim Berners-Lee at a computer.">
<figcaption>Tim Berners-Lee at a computer.</figcaption>
</figure>
</body>
</html>
body, figure { padding: 20px; }
figure { background-color: gold; }
figcaption {
font-family: sans-serif;
margin-top: 10px;
}