SPECS


HTML


HyperText Markup Language


For full documentation visit html.spec.whatwg.org.

For general information visit en.wikipedia.org/wiki/HTML.


HTML (HyperText Markup Language) is technically a markup language, not a programming language, because it lacks computational logic, variables, and loops. Developed by Sir Tim Berners-Lee in 1991, HTML serves as the foundational skeleton of virtually every website on the internet, instructing web browsers how to structure and display raw data like text, images, and links.


The Core Trilogy of Web Development

To build functioning websites, HTML works alongside two other essential technologies:

  • HTML: Defines the core content, meaning, and structural framework.

  • CSS (Cascading Style Sheets): Handles presentation, color, layout positioning, and design styles.

  • JavaScript: Acts as the actual programming language that introduces interactive logic, animations, and data storage.


Basic Structure and Tags

HTML uses system tags enclosed in angle brackets (<>) to define elements on a page. Most tags require an opening tag and a closing tag (</>) to wrap the targeted content.

example html

<!DOCTYPE html>
<html>
<head>
    <title>My First Website</title>
</head>
<body>
    <h1>Welcome to My Website</h1>
    <p>This is a short paragraph describing my page.</p>
    <a href="https://example.com">Visit Example Site</a>
</body>
</html>


Essential Document Components

  • <!DOCTYPE html>: Tells the browser to interpret the document using modern HTML5 standards.

  • <html>: The root container element that encloses all web page content.

  • <head>: Houses non-visible page metadata, character encodings, and the browser tab title.

  • <body>: Wraps all visible content such as headers, media, links, and text paragraphs.


Why Semantic HTML Matters

Modern standards emphasize Semantic HTML, which utilizes descriptive tags that indicate the meaning of the content rather than just its layout. For example, using <header>, <nav>, <article>, and <footer> clarifies document sections for assistive technologies like screen readers and vastly improves search engine optimization (SEO).


Programming Languages


More Coding Languages




---
title: HTML
text: HyperText Markup Language
image: /assets/svg/html5.svg
link: 
target: 
---