what are the different ways in which CSS can be incorporated in an HTML document?
Answers
Answered by
8
Explanation:
CSS can be added to an HTML page in three ways:
Inline - Add style inside an HTML tag using style attribute to give styling.
Internal - Inside <head> tag, add <style> tag and provide styling inside it.
External - You can do all styling of an HTML file in external CSS file and link that file to HTML page.
Similar questions