We've already added the basic webpage. Let's style it with CSS.

Assemble the code to make a rule for the "photo" class. Inside, add height as the first property, followed by width.

<html>
<head>
<link rel="stylesheet" href="style.css">
<style>
.photo {
height: 100px;
width: 200px;
}
</style>
</head>
<body>
<img class="photo" src="https://mimo.app/r/greece.png">
<h3>Facts about Greece</h3>
<p class="population">Population: 10.77 million </p>
<p class="funFact">Fun fact: considered by most to be the birthplace of democracy.</p>
</body>
</html>]]>

Make sure to pick .photo { followed by height: 100px; and then width: 200px;, }.