1<!DOCTYPE html>
2<html>
3<body>
4
5<h2>Floating Images</h2>
6<p><strong>Float the image to the right:</strong></p>
7
8<p>
9<img src="smiley.gif" alt="Smiley face" style="float:right;width:42px;height:42px;">
10A paragraph with a floating image. A paragraph with a floating image. A paragraph with a floating image.
11</p>
12
13<p><strong>Float the image to the left:</strong></p>
14<p>
15<img src="smiley.gif" alt="Smiley face" style="float:left;width:42px;height:42px;">
16A paragraph with a floating image. A paragraph with a floating image. A paragraph with a floating image.
17</p>
18
19</body>
20</html>
21