Skip to content

Instantly share code, notes, and snippets.

@iagoEffting
Created July 12, 2014 00:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iagoEffting/41489bb8cbd6b5db9825 to your computer and use it in GitHub Desktop.
Save iagoEffting/41489bb8cbd6b5db9825 to your computer and use it in GitHub Desktop.
Introdução a Desenvolvimento Web
*{ margin: 0; padding: 0;}
p.claro{background: #F6F6F6;}
p.escuro{background: #333;}
<!DOCTYPE html>
<html>
<head>
<title>Titulo</title>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<h1 style="color: #F00F00">Cabeçalho</h1>
<h1>Outro Cabeçalho</h1>
<p>Isto é um Parágrafo</p>
<p class='claro'>Texto 1</p>
<p class='escuro'>Texto 2</p>
<p class='claro'>Texto 3</p>
<p class='escuro'>Texto 4</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment