Conteúdo do Curso
HTML Supremo
HTML Supremo
Tags
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:
index
index
index
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.
index
index
index
Obrigado pelo seu feedback!