HTML/CSS Define a selection of characters' styling via CSS -
how can define selection of characters' styling via css?
for example, have code in g supposed have special font/size , uru supposed styled.
<font style="font-family: blessedday; font-size: 180px;">g</font>uru
the above works assuming not practice. how can css class definition?
similar, use spans:
<span class="biggie">g</span>uru
css:
.biggie { font-family: blessedday; font-size: 180px; }
note "blessedday" not seem freely available webfont.
Comments
Post a Comment