How to make font bold using HTML and CSS

2 Answers

0 votes
<!-- HTML file -->
 
<span class="brand">WorkingFrame</span>
/* CSS file */
 
.brand {
    font-weight: bold;
}

 



answered Jul 16, 2016 by avibootz
0 votes
<!-- HTML file -->
  
<span class="brand">WorkingFrame</span>
/* CSS file */
 
.brand {
    font-weight: bolder;
}

 



answered Jul 16, 2016 by avibootz

Related questions

1 answer 666 views
1 answer 274 views
2 answers 327 views
2 answers 358 views
1 answer 315 views
...