Two font types in one button style - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Two font types in one button style

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">
#a {<!-- www  . j a  v a 2 s .  c om-->
   font-size:13px;
}

#b {
   font-size:41px;
}
</style> 
 </head> 
 <body> 
  <button> <span id="a">Lorem</span> <span id="b">Lor</span> </button>  
 </body>
</html>

Related Tutorials