Computer Science, asked by vai20, 1 year ago

different ways of adding style sheets files to HTML document

Answers

Answered by Anonymous
8
Style information can be either attached as a separate document or embedded in the HTML document.
 These are the three methods of implementing styling information to the HTML document (from highest to lowest priority).
 Inline styles — Using the style attribute in the HTML start tag
.
Embedded style — Using the <style> element in the head section of the document.
External style sheet — Using the <link> element, pointing to an external CSS files.

Similar questions