seven-green-divs.xht (564B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Seven green divs</title> 5 <style type="text/css"> 6 div { color: green; } 7 </style> 8 </head> 9 <body> 10 <div>This should be green.</div> 11 <div>This should be green.</div> 12 <div>This should be green.</div> 13 <div>This should be green.</div> 14 <div>This should be green.</div> 15 <div>This should be green.</div> 16 <div>This should be green.</div> 17 </body> 18 </html>