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 652 views
1 answer 262 views
2 answers 308 views
2 answers 328 views
1 answer 293 views
...