Skip to content

Instantly share code, notes, and snippets.

@lucasrmagalhaes
Last active March 15, 2022 14:35
Show Gist options
  • Save lucasrmagalhaes/a40b37b6943117c950e24517b6ae8ccb to your computer and use it in GitHub Desktop.
Save lucasrmagalhaes/a40b37b6943117c950e24517b6ae8ccb to your computer and use it in GitHub Desktop.
HTML - Códigos
<!DOCTYPE html>
<!-- Adicionar Espaçamentos -->
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Espaçamento</title>
</head>
<body>
<p>
&nbsp;Adiciona espaço <br>
&#160;Forçar espaço em branco <br>
&ensp;Dois espaços <br>
&emsp;Quatro espaços <br>
&nbsp;&nbsp;&nbsp;&nbsp;Recuo
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment