Computer Science, asked by lunadeka61, 10 months ago

what are the different ways in which CSS can be incorporated in an HTML document? ​

Answers

Answered by prasun62
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