wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

01 HTML/CSS Einführung

Total questions: 12

Worksheet time: 9mins

Name
Class
Date
1.

Wofür steht eigentlich HTML?

a)

Hyperlinks and Text Markup Language

b)

Hypertext Markup Language

c)

Home Tool Markup Language

d)

Hyperlinks Tool and Markup Language

2.

In welchem HTML Element wird der komplette sichtbare Inhalt einer Website platziert?

a)

<head>

b)

<body>

c)

<section>

d)

<doctype>

3.

Wie binden wir Bilder korrekt ein?

a)

<img href="assets/img/bild.jpg">

b)

<img src="assets/img/bild.jpg">

c)

<img url="assets/img/bild.jpg">

d)

<img>assets/img/bild.jpg</img>

4.

Welches der folgenden HTML Elemente ist kein semantisches Element?

a)

nav

b)

main

c)

footer

d)

div

5.

Richtig oder falsch: Inline-Elemente nehmen die gesamte verfügbare Breite des Browsers ein.

a)

Richtig

b)

Falsch

6.

Wofür steht eigentlich CSS?

a)

Cascading Style Sheet

b)

Colorful Style Sheets

c)

Computer Style Sheets

d)

Creative Style Sheets

7.

Richtig oder falsch:

Die richtige Syntax für die "shorthand declaration" ist background: url("img.jpg") center/cover no-repeat

a)

Richtig

b)

Falsch

8.

Welche ist die richtige CSS-Syntax?

a)

{body; color: black;}

b)

body {color: black;}

c)

{body: color = black;}

d)

body: color = black;

9.

Welche Eigenschaft verwenden wir, um die Schriftart eines Elements zu ändern?

a)

font-family

b)

font-style

c)

font-weight

d)

font-size

10.

Welcher CSS Selektor-Kombinator existiert nicht?

a)

A - B

b)

A > B

c)

A ~ B

d)

A B

11.

Wie verlinken wir auf ein externes Stylesheet?

a)

<link rel="stylesheet" href="mystyle.css">

b)

<stylish href="mystyle.css">

c)

<style src="mystyle.css">

d)

<stylesheet>mystyle.css</stylesheet>

12.

Wie können wir dem Body mit Inline Style eine gelbe Hintergrundfarbe geben?

a)

<body style>"background-color: yellow"</body>

b)

<body style="background-color: yellow;">

c)

<background>yellow</background>

d)

<body background="yellow">