What am I doing wrong???
<p> <p style="font-size: 10px;"> Some text for you to make tiny!</p> <p> <p style="font-size: 20px;"> Some text for you to make normal size! </p> <p> <p style="font-size: 40px;">Some text for you to make super big!</p>
style is an attribute you can add to a opening tag without creating an additional opening tag, so if i have a paragraph:
<p>i am a paragraph</p>
you can just add the style attribute to the opening tag:
<p style="">i am a paragraph</p>
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.