smaller letters next to h1 tag

Mutikasa

Power Member
Joined
May 23, 2011
Messages
589
Reaction score
216
I have some <h1>Logo</h1> made even bigger with css, but want to add little "beta" next to it.
So it be: Logobeta
how do I do that?
 
You could duplicate the CSS you used for the <h1> tag then use <h7> for the small tag. You could also just use HTML.
 
Code:
<h1 class="logo">LOGO <span>beta</span></h1>

h1.logo span {font-size:11px; font-weight:normal;}
 
You can make that really easy use dreamweaver and make a css rule.
underline the text beta and apply the rule to beta.
Thanks have a nice day
 
Back
Top