John Doe
Test por , creado hace más de 1 año

Test sobre CSS Einbinden, creado por John Doe el 15/02/2018.

3
0
0
John Doe
Creado por John Doe hace más de 6 años
Cerrar

CSS Einbinden

Pregunta 1 de 4

1

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

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 2 de 4

1

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

Selecciona una de las siguientes respuestas posibles:

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

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

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

Explicación

Pregunta 3 de 4

1

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

Selecciona una de las siguientes respuestas posibles:

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

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

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

Explicación

Pregunta 4 de 4

1

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

Selecciona una o más de las siguientes respuestas posibles:

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

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

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

Explicación