Sorry if this is an extremely basic/noob question, but I just dipped into html/css and seem to have run into a little problem. Below is the code I have tried for my css file
h3{
font-family: Times, Times New Roman, serif;
font-size: 1.3em;
text-transform: uppercase;
text-align: right;
color: maroon;
}
p{
text-emphasis: green;
}
body {
background-color: #e6e6fa;
font-family: Arial, sans-serif;
font-size: 1.2em;
text-emphasis: green;
}
Ignore the header and body stuff, that is just other (working) parts of the css. I tried sticking "text-emphasis" into other sections (header and body) but nothing seems to change the emphasized text to green (I also need to make it bold, which I'm not sure which command can do that)
Again, sorry for the very nooby and vague question. Basically what I need to do is make emphasized text (that appears in 2 paragraphs in my html file) green and bold, instead of it just being italicized. I know this is very spoon-feedy but i've tried different attempts to no avail. thank you all!