li {
/* font-family: "Times New Roman", Times, serif; */
/* font-size: x-small; */
/* font-style: italic; */
/* font-weight: bold; */
padding-top: 4px;
padding-bottom: 4px;
}
The lines enclosed between /* and */ are comments, so have no
effect now but indicate some of the other customization option.
.veryemphatic
{
color: red;
font-weight: bold;
font-size: larger;
}
One can use it where needed as
<span
class="veryemphatic">SOMETHING</span>
P.emphatic
{
color: red;
font-weight: bold;
font-style: italic;
font-size: x-large;
}
It can be used as
<p
class="emphatic">SOMETHING</p>
SOMETHING
ID, CLASS
and STYLE at
<style TYPE="text/css">
<!--
.red
{
color: red;
}
-->
</style>
ID, CLASS
and STYLE) are discussed
at