A fundamental stylesheet language essential for modern web development, responsible for the visual presentation and layout of web pages
CSS
Three core web technologies
HTML
JavaScript
CSS
Methods to integrate CSS into HTML documents
Best practice of integrating CSS in HTML documents for its organizational benefits
External method
When Styles are applied directly to a single HTML element using the style attribute
Inline CSS
Example:
<h3> Welcome to MMS 142 </h3>
Best used when applying a unique style to a single element, usually for small-scale styling or quick tests
Inline CSS
When CSS rules are placed within a <style> tag, typically inside the <head> section of the HTML document</style>
Internal CSS
Example:
<head>
<style>
content</style>
Usually implemented on styling a single HTML page when the styles are unique to that page
Internal CSS
When styles are defined in a separate file with a .css extension. The file is then linked to the HTML document using the <link></link> tag in the <head> section
External CSS