The text color of the first paragraph must be the same color as defined by the#firstP selector.
You cannot delete or change existing styles, only add to them.
This task is part of the Full-Stack JavaScript Course...
The text color in all paragraphs after #secondP must be #01BBE2.
Do not add new classes, identifiers, or inline styles to paragraphs.
Use a common sibling combinator.
This task is part of the Full-Stack JavaScript Course...
There is a calendar for March in the index.html file.
On each line, every 7th day should be marked with a red background.
The text color in this cell must be white....
Links to lectures have been added to index.html.
Some links open in a new window.
All of these links must have a background of #41CCC7.
Don鈥檛 use IDs, classes, and inline styles - just attribute selectors....
In the index.html file, each <span> element has a margin-left property.
But in this case, the style will be added to the first element as well.
We need to fix this....
We need to refactor the code a little to make it semantically correct.
Add the necessary tags to make the navigation semantically correct.
This task is part of the Full-Stack JavaScript Course...
We need to refactor the code a little to make it semantically correct.
Existing tags need to be grouped into logical blocks for this to be semantically correct.
This task is part of the Full-Stack JavaScript Course...
We need to refactor the code a little to make it semantically correct.
Existing tags need to be grouped into logical blocks for this to be semantically correct.
We also need to replace some of the tags with more appropriate ones....
We need to refactor the code a little to make it semantically correct.
Replace the required tags with semantic ones.
For the title, use the tags h1, h2 and h3 in decreasing order of block sizes....
Paragraphs render well on mobile displays.
But for large displays, it鈥檚 worth a little tweak.
Let鈥檚 change the paragraph styles for all devices with a display width greater than 480px:...