<!-- XHTML:Basics plus snippet 11. --> <!-- Controlling the appearance and emphasis of text. --> <!-- Use of 'strong' and 'em' elements. --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>View snippet page</title> </head> <body> <h2><strong>Use of 'strong' element for bold style text.</strong></h2> <h2><em>Use of 'em' element for italic style text.</em></h2> </body> </html>