Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<!-- os metadados vão aqui-->
</head>
<body>
<!-- o conteúdo vai aqui. -->
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML & CSS Codelab para Mulheres</title>
</head>
<body>
<!-- o conteúdo vai aqui. -->
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML & CSS Codelab para Mulheres</title>
<link rel="stylesheet" href="caminho/para/seu/arquivo.css">
</head>
<body>
<!-- o conteúdo vai aqui. -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML & CSS Codelab para Mulheres</title>
<style>
body {
margin: 0;
font-family: 'Helvetica', sans-serif;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML & CSS Codelab para Mulheres</title>
</head>
<body style="text-align: center;">
<p style="font-weight: bold;">Esse é um parágrafo.</p>
</body>
</html>
body {
font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
font-size: 1.5em;
font-weight: bold;
}
div {
background-color: #00897B;
background-image: url('caminho/para/sua/imagem.png');
background-repeat: no-repeat;
background-size: 100% 100%:
}
/* tag html */
body {
background-color: blue;
}
/* acessando via id */
#unique {
font-size: 24pt;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML & CSS Codelab para Mulheres</title>
</head>
<body>
<img src="caminho/para/a/imagem" alt="breve descrição da imagem">
</body>
</html>