<!-- - Add a style rule to the css file for the p selector
and make the font style bold. Visit the W3Schools website by
clicking on the link from the previous slide. Then search for
the correct property and add it to your css file.
-->
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/styles.css">
<title>Rocky the Rottweiler/Lab</title>
</head>
<body>
<h1>Meet Rocky!</h1>
<p>Rocky is a black and tan <a href="#">rottweiler/labrador mix</a></p>
<ul>
<li>is 8 years old</li>
<li>loves going to the beach, swimming, and playing fetch</li>
<li>loves to eat and sleep too!</li>
</ul>
<img src="images/rocky.jpg" alt="Rocky the rottweiler/labrador dog" width="400" />
</body>
</html>