Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Tags Emparelhadas e Únicas | Tags e Atributos
HTML Supremo
course content

Conteúdo do Curso

HTML Supremo

HTML Supremo

1. Desenvolvimento Web
2. Tags e Atributos
3. Estrutura do Documento
4. Mídias e Tabelas
5. Formulários

bookTags 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:

html

index

css

index

js

index

copy

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:

html

index

css

index

js

index

copy

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:

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.

Selecione a resposta correta

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 3
some-alt