🗺️ Chapter Roadmap
1 What is HTML?
HTML stands for HyperText Markup Language. Think of HTML as the skeleton or the building blocks of a webpage. It is used to structure the content on the web.
💡 Important Note: HTML is not a programming language (like Python or C++). It cannot do math or make logical decisions. It is a Markup Language used only to format and display text, images, and links.
HyperText
Text that contains links (URLs) connecting one webpage to another webpage.
Markup
Special tags used to format text and tell the browser how to display the content.
Language
The standard language that web browsers (like Chrome, Safari) understand.
2 The Basic HTML Structure
Every HTML page needs a standard format to work correctly. Think of it like a human body: it has a Head (for hidden brain information) and a Body (for everything visible).
4 Attributes (Extra Powers)
Attributes provide extra information or special powers to HTML elements.
Rule of thumb: Attributes are ALWAYS written inside the Opening Tag.
Tells the browser WHAT kind of information you are giving. (href = Hypertext Reference).
The actual data/link. It should always be wrapped in quotation marks " ".