Computer Science, asked by arpita1145, 1 month ago

how to apply CSS to an HTML document​

Answers

Answered by patelsamira0951
2

Answer:

Explanation:

CSS can be added to HTML documents in 3 ways:

Inline - by using the style attribute inside HTML elements.

Internal - by using a <style> element in the <head> section.

External - by using a <link> element to link to an external CSS file.

Answered by vikrantvikrantchaudh
2

Answer:

The most common way to add CSS, is to keep the styles in external CSS files.

...

CSS can be added to HTML documents in 3 ways:

Inline - by using the style attribute inside HTML elements.

Internal - by using a <style> element in the <head> section.

External - by using a <link> element to link to an external CSS file.

Similar questions