+ 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 😸
3 ответов
+ 4
<p class="large red">red+large</p>
+ 1
how to create text that rains from up
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 😊