Description
In the final touches file, both of the images contain in-line CSS:
|
<img style="width: 150px;" src="https://cdn.pixabay.com/photo/2014/10/27/18/32/obsidian-505332_960_720.jpg" alt="Obsidian" /> |
|
<img style="width: 150px;" src="https://cdn.pixabay.com/photo/2014/10/27/18/32/obsidian-505332_960_720.jpg" alt="Obsidian" /> |
Since there is external CSS, it best to avoid using it and inline CSS at the same time because most often, they can't be reused.
Solution
Place the inline CSS in the external CSS section.
Description
In the final touches file, both of the images contain in-line CSS:
html-101/4-semantic-html/26_final_touches.html
Line 66 in 6009394
html-101/4-semantic-html/26_final_touches.html
Line 57 in 6009394
Since there is external CSS, it best to avoid using it and inline CSS at the same time because most often, they can't be reused.
Solution
Place the inline CSS in the external CSS section.