Como editar textos: poderá criar paginas com diferentes tipos de textos.
- Versão do html
<!DOCTYPE html>
- Tag html, defina a língua que será usada na página
<html lang="PT-br">
</html>
- Cabeçalho do projeto, onde as tags "invisíveis" ficarão, basicamente onde o navegador irá indentificar as metas tags e links do seu site
<head></head>
- Biblioteca de caracteres
<meta charset="UTF-8">
- Titulo da pagina
<title></title>
- Corpo do projeto
<body></body>
- Parágrafo
<p>Texto</p>
- Texto em negrito
<p> <strong> Texto </strong> </p>
- Texto em italico
<p> <em> Texto </em> </p>
Style dos textos- Tamanho
<p style = "font-size:10px">Texto</p>
- Posição
<p style = "text-align: center">Texto</p>
- Posições
text-align: left;
text-align: right;
text-align: center;
text-align: justify;
text-align: justify-all;
text-align: start;
text-align: end;
text-align: match-parent;