Lesson 5: HTML Graphics
(Mixing Text and Graphics)

Mixing graphics and text is very straightforward. Simply put text on either side of the image tag.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Mixing Text and Graphics</title>
</head>

<body bgcolor="#bdbdbd" text="black" link="blue" vlink="purple">
<center>
<b>
<br />
<br />
This
<img src="images/bud.gif" width="42" height="66" alt="Bud" />
's for you!
</b>
</center>
</body>
</html>