Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Tags Emparejadas y Simples | Tags y Atributos
HTML Definitivo
course content

Contenido del Curso

HTML Definitivo

HTML Definitivo

1. Desarrollo Web
2. Tags y Atributos
3. Estructura del Documento
4. Medios y Tablas
5. Formularios

bookTags Emparejadas y Simples

En HTML, existen tanto tags emparejadas como tags simples (también conocidas como tags de cierre automático o elementos vacíos). Cada tipo sirve para un propósito específico y tiene su propia función.

Tags emparejadas

Las tags emparejadas consisten en tags de apertura y cierre. Pueden envolver el contenido y agrupar elementos para cambiar algunas propiedades o reunir elementos por significado.

Sintaxis:

He aquí un ejemplo real de uso de tags emparejadas:

html

index

css

index

js

index

copy

Tags simples

Las tags simples constan únicamente de una tag de apertura y ninguna de cierre. Se utilizan cuando la tag no requiere contenido o cuando todo el contenido y el comportamiento se especifican mediante atributos.

Sintaxis:

He aquí un ejemplo real de uso de tags simples:

Single tags

Single tags consist of only an opening tag and no closing tag. They are used when the tag does not require content or when all content and behavior are specified using attributes.

Syntax:

Here's a real example of using single tags:

html

index

css

index

js

index

copy

Veamos el siguiente ejemplo válido (correcto):

Let’s consider the next valid (correct) example:

Let’s consider the next valid (correct) example:

html

index

css

index

js

index

copy

Note

To summarize, HTML consists of paired and single tags, each serving different purposes. Paired tags have an opening and closing tag to enclose content, while single tags are self-closing. Properly nesting tags and following the correct hierarchy are essential for a well-formed HTML structure.

Note

To summarize, HTML consists of paired and single tags, each serving different purposes. Paired tags have an opening and closing tag to enclose content, while single tags are self-closing. Properly nesting tags and following the correct hierarchy are essential for a well-formed HTML structure.

What are the two main categories of HTML tags? Please provide the names of these categories.

What are the two main categories of HTML tags? Please provide the names of these categories.

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 2. Capítulo 3
some-alt