Conteúdo do Curso
HTML Supremo
HTML Supremo
Tags Emparelhadas e Únicas
No HTML, existem tanto tags emparelhadas quanto tags únicas (também conhecidas como tags autofecháveis ou elementos vazios). Cada tipo serve a um propósito específico e possui sua própria função.
Tags emparelhadas
As tags emparelhadas consistem em tags de abertura e fechamento. Elas podem envolver o conteúdo e agrupar itens para alterar algumas propriedades ou coletar elementos por significado.
Sintaxe:
Aqui está um exemplo real de uso de tags emparelhadas:
index
index
index
Tags únicas
Tags únicas consistem apenas em uma tag de abertura e não possuem tag de fechamento. São utilizadas quando a tag não necessita de conteúdo ou quando todo o conteúdo e comportamento são especificados por meio de atributos.
Sintaxe:
Aqui está um exemplo real do uso de tags únicas:
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:
index
index
index
Vamos considerar o próximo exemplo válido (correto):
Let’s consider the next valid (correct) example:
Let’s consider the next valid (correct) example:
index
index
index
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.
Obrigado pelo seu feedback!