This document provides an introduction to basic HTML concepts, including:
- HTML is the markup language that defines the structure and layout of web pages. It uses tags to mark elements like headings, paragraphs, and images.
- A valid HTML document has a base structure with <html>, <head>, and <body> tags, along with a <title>.
- Elements are defined with opening and closing tags, and can have attributes to provide more information. Common block elements make boxes, while inline elements remain in the flow of text.
- Special characters need to be written using HTML codes to be properly understood by browsers.