Need help with your APIs? I offer API discovery, governance & evangelism services. Explore services →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

HTML

HTML (HyperText Markup Language) is the standard markup language for structuring documents and content on the web, defining elements like headings, links, forms, and media that browsers render into pages.

HTML, the HyperText Markup Language, is the standard markup language for describing the structure of documents and content on the web. Its elements — headings, paragraphs, links, forms, tables, and media — give a browser the semantic skeleton it needs to render a page, and it is the foundational format that everything else on the web layers on top of.

  • Semantic elements - Tags like <article>, <nav>, <form>, and <table> describe the meaning and structure of content, not just its appearance.
  • Hyperlinks - The <a> element and its href are the mechanism that turns isolated documents into a connected web.
  • Living standard - Maintained by the WHATWG as a continuously updated specification rather than versioned releases.
  • Universal rendering target - Every browser, crawler, and reader agent knows how to parse and display it.

In API work, HTML is where human-facing developer experience lives — the portal, the reference documentation, the getting-started guides, and the interactive consoles are all HTML, even when the API itself speaks JSON. It also matters as the surface that agents and crawlers scrape when a machine-readable contract like OpenAPI is missing, which is exactly why I push providers to publish structured definitions instead of leaving discovery to page parsing. The modern web builds on its latest incarnation, HTML5.