different ways of adding style sheets files to HTML document
Answers
Answered by
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.
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