HTML/CSS Define a selection of characters' styling via CSS - HTML CSS CSS

HTML CSS examples for CSS:Selector

Description

HTML/CSS Define a selection of characters' styling via CSS

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">
.c1 {<!--from   w w  w .ja v  a 2  s.c o  m-->
   font-family:BlessedDay;
   font-size:181px;
}
</style> 
 </head> 
 <body> 
  <span class="c1">L</span>Lorem  
 </body>
</html>

Related Tutorials