Hypertext Markup Language (HTML) is the standard language for creating web pages. It structures content on the internet.
Key Features of HTML:
- Uses tags to define elements
- Describes document structure
- Supports text, images and links
- Works with CSS for styling
- Integrates with JavaScript for interactivity
Common HTML Elements:
- <head> for metadata
- <body> for visible content
- <h1> to <h6> for headings
- <p> for paragraphs
- <a> for links
- <img> for images
HTML5, the latest version, introduced new semantic elements like <header>, <nav> and <article>. These elements improve document structure and accessibility.
