font width code example
Example 1: css bold text
.text {
font-weight: bold;
}
Example 2: font size css
.class {
font-size: 12px;
}
Example 3: html font size
<span style="font-size:20px;"></span>
Example 4: css bold text
we can set text bold using css property named 'font-weight'
Syntax:
selector{
font-weight: bold;
}
Example 5: css font-size
#selector{
font-size:20px;
}
Example 6: font size css
/* you can set the font size using font-size: and a number followed by px */
.class {
font-size: 60px;
}