My First Heading

My first paragraph.

Inline Background Color

Welcome!

This page has a light blue background.

2. Using Internal CSS Define the background color in a

Welcome!

This page has a light green background.

3. Using External CSS Create a separate CSS file and link it to your HTML file. styles.css (External CSS file): Css Copy code body { background-color: lightcoral; } index.html: Html Copy code External CSS Background Color

Welcome!

This page has a light coral background.

Notes: Color Formats: You can specify colors using: Named colors (e.g., red, blue, lightgreen). HEX values (e.g., #ff0000 for red). RGB values (e.g., rgb(255, 0, 0) for red). HSL values (e.g., hsl(0, 100%, 50%) for red). Best Practice: Use external CSS for maintainability, especially for larger projects.

Hello World

Lorem ipsum...