CSS

adplus-dvertising
How to make text Bold using CSS style sheet
Previous Home Next

CSS code for this is given below

<style type="text/css">
.BoldStyle {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FF0000;
}
</style>

for activating this 'style operation', we need to insert this code in between the <head> </head> tags at the top of your web page.Here we make a class named Boldstyle and inside this class i have mentioned the font-family,font-weight and color for font. In order to make bold font we use font-weight in css.

Previous Home Next