Task #2102 - Link styles
Your colleague wrote both HTML and CSS, but something is wrong. Apparently he forgot to link styles to the HTML document. You should fix this by properly linking styles.css to index....
Your colleague wrote both HTML and CSS, but something is wrong. Apparently he forgot to link styles to the HTML document. You should fix this by properly linking styles.css to index....
Your colleague continues to make mistakes. The HTML document and styles are written again. And the styles are even connected, but again nothing works. Most likely, the error lies in the path to the stylesheet....
Create a styles.css file and include it in the index.html document. In the styles.css file add styles for the paragraph and heading. align the paragraphs to the middle change the heading color to red This task is part of the Full-Stack JavaScript Course...
Styles for paragraph are already written and linked. But the heading styles are missing. Create them in a separate file heading-styles.css, which should be placed in the css folder. the heading text must be centered....
The text of the paragraph with the #red-text identifier should be red. But someone misplaced the color. Correct this mistake using internal stylesheet. This task is part of the Full-Stack JavaScript Course...
There are 4 paragraphs in the index.html file. Your colleague has added the styles, but forgot to use them. The text of the second paragraph should be red. The text of the fourth paragraph should be bold....
Add a pink background to each block in index.html. Use internal styles and classes, the name of the class can be anything you like. Don鈥檛 change the number of blocks....
Part of the Fibonacci sequence is specified in the index.html file. But the numbers fuse. Let鈥檚 improve the styling and make every second number bold. Use internal styles and classes. The class name should be bold-item....
You already know enough to not just fix other people鈥檚 bugs, but also refactor (improve) the code. Your colleague used inline styles everywhere, and this isn鈥檛 particularly good. Let鈥檚 refactor the code using classes and identifiers....
There are three paragraphs in the index.html file. Let鈥檚 add color to each of them, use the internal stylesheet. The text of the first paragraph should be red. The text of the second paragraph must be specified using the HEX code - 808000....