In CSS:p.large{font-size:large;} p.red {color:red;} In HTML:<p>red+large</p> Question: How to make text red and large with CSS | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 15

In CSS:p.large{font-size:large;} p.red {color:red;} In HTML:<p>red+large</p> Question: How to make text red and large with CSS

CSS if you like the question you can leave a like šŸ˜ø

25th Mar 2017, 10:05 PM
NimWing Yuan
NimWing Yuan - avatar
3 Answers
+ 4
<p class="large red">red+large</p>
25th Mar 2017, 10:07 PM
Yaroslav Pieskov
Yaroslav Pieskov - avatar
+ 1
how to create text that rains from up
30th Aug 2018, 5:42 AM
Eriab
Eriab - avatar
0
p.large would mean, that there is a <large> tag inside the <p> tag. But I think that, the large or red tag is not existing... CSS .red{ color:red; } .large{ font-size: large; } Html <p class="red> Red </p> <p class="large"> Large </p> You're welcome šŸ˜Š
7th Jun 2017, 5:07 AM
StoffelJs