HTML (HyperText Markup Language)
HTML es el lenguaje de marcado fundamental de la World Wide Web. Estructura el contenido con elementos semánticos (encabezados, párrafos, listas, enlaces, imágenes) y funciona con CSS para el estilo y JavaScript para la interactividad.
Tipo MIME
text/html
Tipo
Texto
Compresión
Sin pérdida
Ventajas
- + Universal support in every web browser and email client
- + Semantic elements improve accessibility and SEO
- + Extensible with CSS for styling and JavaScript for interactivity
- + Human-readable source that is easy to inspect and debug
Desventajas
- − Verbose syntax compared to Markdown for simple content
- − Rendering inconsistencies between browsers require testing
- − Static HTML alone has limited interactivity without JavaScript
Cuándo usar .HTML
Usa HTML para páginas web, plantillas de correo electrónico, sitios de documentación y cualquier contenido que necesite mostrarse en un navegador web.
Detalles técnicos
HTML utiliza un árbol de elementos (DOM) definido por etiquetas de apertura y cierre. El navegador analiza HTML en un DOM, aplica CSS para el estilo y ejecuta JavaScript para el comportamiento. HTML5 añadió elementos nativos de video, audio, canvas y formularios.
Historia
Tim Berners-Lee creó HTML en 1991 en el CERN como parte del proyecto World Wide Web. El formato evolucionó a través de las versiones 2.0 (1995), 4.01 (1999) y HTML5 (2014), que añadió etiquetas semánticas, video/audio y APIs.
Convertir desde .HTML
Convertir a .HTML
Formatos relacionados
Términos relacionados
Learn More
CSS Units Explained: px, em, rem, vh, and When to Use Each
CSS offers over a dozen length units, each suited to different situations. Understanding the differences between absolute and relative units …
JSON vs YAML vs TOML: Choosing a Configuration Format
Configuration files are the backbone of modern applications. JSON, YAML, and TOML each offer different trade-offs between readability, complexity, and …
Meta Tags for SEO: Title, Description, and Open Graph
Meta tags control how your pages appear in search results and social media shares. This guide covers the essential meta …
Text Encoding Explained: UTF-8, ASCII, and Beyond
Text encoding determines how characters are stored as bytes. Understanding UTF-8, ASCII, and other encodings prevents garbled text, mojibake, and …
Flexbox vs CSS Grid: A Practical Comparison
Flexbox and CSS Grid are complementary layout systems, not competitors. This guide clarifies when to reach for each one and …
How to Format and Validate JSON Data
Malformed JSON causes silent failures in APIs and configuration files. Learn how to format, validate, and debug JSON documents to …