Font-weight for bolder - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font

Description

Font-weight for bolder

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
div {<!--from w ww.  j a v a 2  s  . co  m-->
   position:absolute;
   top:9px;
   left:51px;
   font-size:39px;
}

#b {
   top:51px;
   font-weight:bolder;
}
</style> 
 </head> 
 <body> 
  <div id="a">
    Lorem ipsum d 
  </div> 
  <div id="b">
    Lorem ipsum d 
  </div>  
 </body>
</html>

Related Tutorials