Código: Selecionar todos
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css">
<title>Resultado</title>
</head>
<body>
<h1>Sou marrom!</h1>
<h2>Sou coral!</h2>
<h3>Sou dourado!</h3>
<h4>Sou verde água!</h4>
<h5>Sou azul royal!</h5>
<h6>Sou chumbo!</h6>
</body>
</html>
Código: Selecionar todos
h1 {
color: #8B1C62;
}
h2 {
color: #FF7256;
}
h3 {
color: #FFC125;
}
h4 {
color: #54FF9F;
}
h5 {
color: #530EE8;
}
h6 {
color: #8B668B;
}