class属性使用例 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-2022-JP"> <title>Sample_61</title> <style type="text/css"> <!-- body { background-color: #fff; color: #000 font-size: 12pt } p.test1 { font-weight: bold } p.test2 { font-style: italic } --> </style> </head> <body> <p class="test1">これは太字です</p> <p class="test2">イタリック体です</p> </body> </html> </html>