Answers
Sep 13, 2013 - 05:27 PM
To bold text using CSS, you have to use the font-weight property. Set it to bold or 700px.
By example:
p{
font-weight: bold;
}
Mar 27, 2014 - 11:57 PM
<body>
<div>
normal text</br>
</div>
<div bold">
Bold text</br>
</div>
</body>
<html>
Add New Comment