1<!DOCTYPE html>
2<html>
3<head>
4<style>
5img {
6 border-radius: 8px;
7}
8</style>
9</head>
10<body>
11
12<h2>Rounded Images</h2>
13<p>Use the border-radius property to create rounded images:</p>
14
15<img src="paris.jpg" alt="Paris" width="300" height="300">
16
17</body>
18</html>