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

HTML

O HTML (HyperText Markup Language ou Linguagem de Marcação de Hipertexto) é utilizado para criar documentos web. Ele define regras para estruturar textos, adicionar imagens e criar tabelas, formulários e listas. Um documento HTML é um arquivo de texto com a extensão .html que os navegadores de internet interpretam para exibir uma página web.

Tag

Uma tag é o bloco de construção fundamental do HTML. Ela representa um elemento ou item dentro de uma página web, como um título, lista, parágrafo de texto ou imagem. As tags são diferenciadas do texto regular ao usarmos parênteses angulares. O nome da tag e quaisquer atributos são colocados dentro dos parênteses angulares (<>).

Por exemplo, no trecho de código abaixo, temos elementos HTML escritos usando tags de abertura e fechamento:

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?

Selecione a resposta correta

What syntax is used to leave a comment?

What syntax is used to leave a comment?

Selecione a resposta correta

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

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