✅ Description:
Understand the three main ways to apply CSS and learn how to use internal and external stylesheets.
📘 Explanation:
-
Inline CSS: style right in the tag
-
Internal CSS: style inside a
<style>tag in the HTML<head> -
External CSS: link a separate
.cssfile
💻 Code Example (Internal CSS):
🛠️ Exercise:
-
Create a webpage and use internal CSS to style the background and text.
-
Then create a separate
.cssfile and link it to the HTML.

