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 648 views
1 answer 259 views
2 answers 305 views
2 answers 327 views
1 answer 290 views
...