How does external CSS help in styling web pages easily and quickly
Answers
Answered by
2
Answer:
As the name suggests, external css is a separate file saved with the extension .css that contains all the css definitions. This file can be linked with any HTML document as required.
Explanation:
link tag is used to link the external CSS file with HTML document. List tag has following attributes whose needs to be set:
- rel: it takes the value stylesheet that inform the browser that a style sheet needs to be linked
- href: it makes the name or url of the style sheet file to be linked.
- type: it takes the type of style sheet document which is a text file of extension css.
Similar questions