SóProvas


ID
2322883
Banca
IFB
Órgão
IFB
Ano
2017
Provas
Disciplina
Programação
Assuntos

Um arquivo CSS, Cascading Style Sheets ou folhas de estilo em cascata, é responsável pela apresentação visual da estrutura de um arquivo XHTML. A definição do estilo ou aparência dos objetos XHTML pode ser feita internamente ao arquivo XHTML ou externamente a ele em um arquivo CSS à parte. A folha de estilo CSS é dita externa quando os comandos CSS são escritos em:

Alternativas
Comentários
  • <head>

    <link rel="stylesheet" type="text/css" href="mystyle.css">

    </head>

  • e-

    CSS can be added to HTML documents in 3 ways:

       Inline - by using the style attribute inside HTML elements

       Internal - by using a <style> element in the <head> section

       External - by using a <link> element to link to an external CSS file

    https://www.w3schools.com/html/html_css.asp