Please enable JavaScript.
Coggle requires JavaScript to display documents.
ELEMENTS - Coggle Diagram
ELEMENTS
EMPTY ELEMENTS
<br>
LINE BREAK
empty elements don't have start and end tags
ATRIBUTOS
<input type="text">
input é vazio
ELEMENTS REFERENCE
<html>
defines root of html document
<p>
defines headings
<h1> to <h6>
defines the heading of the document
ELEMENTOS GENÉRICOS
<div>
PARA AGRUPAR CONTEÚDO
quebra em bloco o texto
usa junto com atributos
class='cart'
definir o bloco como algo
id='cart'
<span>
PARA AGRUPAR TEXTO
mantém tudo em linha
pode ir dentro do div
DEFINITION
anything between start and end TAGS
<p> esse é um parágrafo </p>
<h1> esse é um título </h1>