wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

HTML & CSS Einführung

Total questions: 14

Worksheet time: 14mins

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.

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

a)

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

b)

<background>yellow</background>

c)

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

d)

<body bg="yellow">

3.

Richtig oder falsch:

Inline Elemente nehmen die gesamte verfügbare Breite ein.

a)

Richtig

b)

Falsch

4.

Welche dieser Elemente sind <table> Elemente?

a)

<thead> <body> <tr>

b)

<table> <tr> <tt>

c)

<table> <tr> <td>

d)

<table> <head> <tfoot>

5.

Was ist die korrekte Syntax für einen Hyperlink?

a)

<a name="https://www.super-code.de">SuperCode</a>

b)

<a url="https://www.super-code.de">SuperCode</a>

c)

<a>https://www.super-code.de</a>

d)

<a href="https://www.super-code.de">SuperCode</a>

6.

Wie erstellen wir eine nummerierte Liste?

a)

<list>

b)

<ul>

c)

<dl>

d)

<ol>

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.

Wofür steht eigentlich CSS?

a)

Cascading Style Sheets

b)

Colorful Style Sheets

c)

Computer Style Sheets

d)

Creative Style Sheets

9.

Richtig oder falsch:

CSS-Styles können wir nur extern verwenden.

a)

Richtig

b)

Falsch

10.

Wie verlinken wir auf ein externes Stylesheet?

a)

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

b)

<style src="mystyle.css">

c)

<stylish href="mystyle.css">

d)

<stylesheet>mystyle.css</stylesheet>

11.

Welche ist die richtige CSS-Syntax?

a)

{body; color: black;}

b)

body {color: black;}

c)

{body: color = black;}

d)

body: color = black;

12.

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

a)

font-weight

b)

font-style

c)

font-family

d)

font-size

13.

CSS-Selektoren: Kombinatoren


Welcher existiert nicht?

a)

A + B

b)

A - B

c)

A > B

d)

A B

14.

Richtig oder falsch:

Wir können mehrere Selektoren, nur getrennt durch Kommas gleichzeitig stylen.

Zum Beispiel: h1, p, li {color: red;}

a)

Richtig

b)

Falsch