In the previous exercise you learned how to use inline styling. However, that could become tedious when wanting to style different elements the same way. The video below shows how one can apply styling more effectively.
Inline CSS is used to style a specific HTML element. You need to add the style attribute to each HTML tag.
Internal CSS in HTML means adding CSS code in the < head > section of the document. The styling will apply to every specified element of the code.
External CSS is used when you want to make changes on multiple web pages. They are created in separate documents. The < link > tag, which goes in the head of an HTML page, is used to link to an external style sheet.
Note: You do not need to know how to use this method for Website 2021.