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 656 views
1 answer 267 views
2 answers 319 views
2 answers 344 views
1 answer 302 views
...