John Doe
Quiz por , criado more than 1 year ago

Quiz sobre CSS Einbinden, criado por John Doe em 15-02-2018.

3
0
0
John Doe
Criado por John Doe mais de 6 anos atrás
Fechar

CSS Einbinden

Questão 1 de 4

1

Die Dateiendung für eine CSS-Datei ist .txt

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 2 de 4

1

Wähle die Antwort aus, die korrekt eine CSS-Datei einbindet.

Selecione uma das seguintes:

  • ...
    <head>
    <link href="style.css" />
    </head>
    ...

  • ...
    <head>
    <style>
    h1 {
    color: red;
    }
    </head>
    ...

  • ...
    <h1 style="color:red;">Ich bin eine Überschrift</h1>
    ...

Explicação

Questão 3 de 4

1

Wähle die Antwort aus, die korrekt eine CSS-Anweisung als Attribut festlegt.

Selecione uma das seguintes:

  • ...
    <head>
    <style>
    h1 {
    color: red;
    }
    </style>
    </head>
    ...

  • ...
    <h1 style="color:red;">Ich bin eine Überschrift</h1>
    ...

  • ...
    <head>
    <link href="style.css" />
    </head>
    ...

Explicação

Questão 4 de 4

1

Wähle die Antwort aus, die korrekt CSS in einem Style-Element festlegt.

Selecione uma ou mais das seguintes:

  • ...
    <h1 style="color:red;">Ich bin eine Überschrift</h1>
    ...

  • <head>
    <style>
    h1 {
    color: red;
    }
    </style>
    </head>

  • <head>
    <link href="style.css" />
    </head>

Explicação