~ Basic Tags~ * : The root element. * : Contains meta-information (not displayed). * : Sets the page title (in the browser tab). * <body>: Contains the visible content. * <h1> to <h6>: Headings (different sizes). * <p>: Paragraphs. * <a>: Links (e.g., <a href="https://www.example.com">Visit Example</a>). * <img>: Images (e.g., <img src="image.jpg" alt="Description">). * <div>: A generic container. * <span>: An inline container. * Example: <!DOCTYPE html> <html> <head> <title>My First Webpage

Welcome!

This is a paragraph.

My Image Part 2: CSS - Styling Your Webpage * What is CSS? Cascading Style Sheets styles the HTML elements (colors, fonts, layout). ~ Ways to add CSS~ * Inline:

This is blue.

(Least recommended) * Internal: Inside