<html> <head> <title>Example 8-1-D</title> <style type="text/css"> div.demo1 b {color:blue; background:yellow;} </style> </head> <body> <p>This is just an ordinary line.<br> This is another line with a <b>bolded</b> word.<br> Nothing special here.</p> <div class="demo1"> <p>These lines are contained in a class called demo1.<br> This line has a <b>bolded</b> word.<br> Cool stuff!</p> </div> <p>Another group of lines.<br> A <b>bolded</b> word in here.</p> <div class="demo1"> <p>Here is a group of lines in the demo1 class again.<br> <b>Bold</b>, <b>bold</b>, <b>bold</b> words.<br> End of this group of lines.</p> </div> </body> </html>