Esse é meu cod html
Na parte de style esta dando o seguinte mensagem de erro:
Sets the color of an element’s text
Syntax: <color>
MDN Reference
semi-colon expectedcss(css-semicolonexpected)
alguem poderia me ajudar por favor , acho que o erro esta na pontuação ( dois pontos : )
__________________________________________________________________
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta http-equiv=”X-UA-Compatible” content=”IE=edge”>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Eventos Dom</title>
<style>
div#area {
background:rgb(177, 138, 138) ;
color:rgb(35, 4, 63)
width: 200px;
height: 200px;
line-height: 200px;
text-align: center;
}
</style>
</head>
<body>
<div id=”area”>
Interaja…
</div>
</body>
</html>