+ 3
Say i want a big, strong italic text... how to do so ?
2 Respuestas
+ 7
HTML:
<span class="bigstrongitalic">your text</span>
CSS:
.bigstrongitalic {
font-weight: bold;
font-size: 18pt;
font-style: italic;
}
+ 4
So we can mix tags together, exactly what i wanted to know.
Sorry to bother you but im still a fresh learner..Thanks a lot man.