Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Tags | 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

HTML

El lenguaje HTML (Hyper Text Markup Language) se utiliza para crear documentos web. Define reglas para estructurar texto, añadir imágenes y crear tablas, formularios y listas. Un documento HTML es un archivo de texto con extensión .html que los navegadores web interpretan para mostrar una página web.

Tag

Una tag es el elemento fundamental de HTML. Representa un elemento o ítem dentro de una página web, como un encabezado, una lista, un párrafo de texto o una imagen. Las tags se diferencian del texto normal mediante corchetes angulares. El nombre de la tag y sus atributos se colocan dentro de los corchetes angulares (<>).

Por ejemplo, en el siguiente fragmento de código, tenemos elementos HTML escritos con tags de apertura y cierre:

Tag

A tag is the fundamental building block of HTML. It represents an element or item within a web page, such as a heading, list, text paragraph, or image. Tags are differentiated from the regular text by using angle brackets. The tag name and any attributes are placed inside the angle brackets (<>).

For example, in the code snippet below, we have HTML elements written using opening and closing tags:

html

index

css

index

js

index

copy

Comments

In HTML, comments can provide explanations or notes within the source code. They are written using the <!-- ... --> syntax. The browser will ignore anything written within these comment tags and will not be displayed on the webpage. With these adjustments, the text provides a concise and informative explanation of HTML concepts, an example code snippet, and a brief overview of comments.

Comments

In HTML, comments can provide explanations or notes within the source code. They are written using the <!-- ... --> syntax. The browser will ignore anything written within these comment tags and will not be displayed on the webpage. With these adjustments, the text provides a concise and informative explanation of HTML concepts, an example code snippet, and a brief overview of comments.

html

index

css

index

js

index

copy
1. What syntax is used to leave a comment?
2. What syntax is used to leave a comment?
What syntax is used to leave a comment?

What syntax is used to leave a comment?

Selecciona la respuesta correcta

What syntax is used to leave a comment?

What syntax is used to leave a comment?

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

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