Define class for
<html> <head> <title>Define class for LI to set its font weight to bold</title> <style type="text/css"> .warning { font-weight: bold; } </style> </head> <body> <ul id="navigation"> <li class="warning"><a href="http://www.java2s.com">A</a></li> <li><a href="http://www.java2s.com">B</a></li> <li><a href="http://www.java2s.com">C</a></li> </ul> </body> </html>