Disciplina: TI - Desenvolvimento de Sistemas
Banca: CESPE / CEBRASPE
Orgão: Petrobrás
<html>
<head>
<title>Formulário de inscrição.</title>
<link rel=stylesheet href=estilo.css type=text/css>
</head>
<body class=destaque>
<center>
<strong>SISTEMA DE MATRÍCULA</strong><br><br>
</center>
<table>
<form method=GET
action="http://www.unb.br/cgi-bin/matricula">
<table border cellspacing=2 cellpadding=5>
<tr>
<th colspan=2 align=center><strong>Formulário de matrícula</strong></th>
</tr><tr>
<th id=verde>Matrícula</th>
<td><input type=text name=matricula size=20 maxlength=80></td>
</tr><tr>
<th id=verde>Curso</th>
<td><input type=text name=curso size=20 maxlength=80></td>
</tr><tr><th id=verde>Período</th><td>
<input type=radio name=periodo value="D" checked> Diurno.
<input type=radio name=periodo value="N"> Noturno.
</td></tr><tr>
<td colspan=2 align=center>
<input type=submit value="Confirmar">
<input type=reset value="Cancelar">
</td></tr>
</table>
</form>
</body>
</html>
Considerando o código acima, na liguagem de marcação e apresentação HTML, julgue o item a seguir.
Considere que o arquivo estilo.css tenha o conteúdo a seguir.
#verde {color:green}
strong {color:red}
th strong {color:blue}
BODY.destaque {background:yellow}
Nesse caso, a cor do fundo será amarela, a do texto SISTEMA DE MATRÍCULA, vermelha, a do texto Formulário de matrícula, azul, e a dos textos Matrícula, Curso e Período, verde.