Last active
January 31, 2018 10:56
-
-
Save rogeralbinoi/064fbd3301213e62589963e250e9381f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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