Skip to content

Instantly share code, notes, and snippets.

@rogeralbinoi
Last active January 31, 2018 10:56
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 rogeralbinoi/064fbd3301213e62589963e250e9381f to your computer and use it in GitHub Desktop.
Save rogeralbinoi/064fbd3301213e62589963e250e9381f to your computer and use it in GitHub Desktop.
<html>
<head>
<meta charset="utf-8">
<title>Exemplo CSS externo</title>
<link href="css/meu-estilo.css" rel="stylesheet"/> <!-- referência para o arquivo css -->
</head>
<body>
<h1>Exemplo CSS Externo</h1>
</body>
</html>
/* css/meu-estilo.css */
h1 {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment