text size bold in css code example
Example 1: change the weight of a bold font css
p {
font-weight: normal;
}
a {
font-weight: bold;
}
p.thick {
font-weight: 780;
}
Example 2: how to bold text css inline
<p style="font-weight:bold">Hey there</p>
Example 3: how to highlight text in css
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>