HTML is a markup language used to define the structure and layout of web pages. It uses tags to describe different types of content like headings, paragraphs, links, images, and lists. Key points:
- HTML documents have an <html> tag which contains <head> and <body> sections
- The <head> contains metadata and is not visible, the <body> contains visible content
- Common tags include <h1>-<h6> for headings, <p> for paragraphs, <a> for links, <img> for images
- Unordered lists use <ul> and <li> tags, ordered lists use <ol> and <li> tags
- Attributes like