Let’s work on the elements placement.
The .grid-container block needs to be made a grid container.
The grid must have three columns.
The first is 20vw wide, the names of the lines are ‘start’ and ‘col-1-end’....
The .grid-item must start at the second line (‘line2’) and must go through two lines.
It must also start at the vertical line ‘col-2-start’ and end at the line ‘col-2-end’...
We need to make a calendar for December. The markup itself is already done. Styles remain.
An item with grid-container class should become a grid container.
The calendar should have 7 columns, the width of each should be determined automatically....
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’t 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...