Games
Bücher
Filme und Serien
Bibliothek
Dinosaurier
100
Creeper kennt man aus welchem Spiel?

Minecraft

100

Sie hat ein eigenes Pferd und ein Äffchen, lebt allein in einem eigenen Haus und ist sehr mutig.

Wer wird gesucht?

Pippi Langstrumpf

Zusatzfrage: Wie heißt die Autorin? (100 Bonuspunkte)

100

Er ist ein bekannter Youtube-Star.

Kennt ihr ihn?

Checker Tobi

100

Wie lange sind DVDs, Musik und Zeitschriften ausleihbar?

2 Wochen

100

Wie heißt dieses Prachtexemplar?

Tyrannosaurus, auch T-Rex genannt.

200
This method can get the value of a style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
What is .css()?
200
This language is a loosely-typed, interpreted, scripting language.
What is JavaScript?
200
This tag defines an image in an HTML page.
What is a 'img' tag?
200
These properties define the space around elements.
What is margin?
200
This is a control statement which allows code to be repeatedly executed. Unlike many other kinds of flow controls this one is often distinguished by an explicit loop counter or loop variable.
What is a 'for statement'?
300
This method can get the higher level element of the selected element.
What is .parent()?
300
JavaScript requires you to use this keyword to declare a local variable.
What is var?
300
This tag defines a division or a section in an HTML document.
What is a 'div' tag?
300
This is the CSS selector that is used to identify a class.
What is a dot?
300
This flow control statement allows code to be executed repeatedly based on a given boolean condition. The condition is evaluated before the code is executed, and executes only if the condition is true.
What is a 'while statement'?
400
This method moves between show and hide between matched elements.
What is .toggle()?
400
This is the language that your paging styling should use.
What is CSS?
400
This tag is used to group inline-elements in a document.
What is a 'span' tag?
400
This is the CSS selector that identifies an id.
What is a hash (#)?
400
This flow control statement allows code to be executed repeatedly based on a given boolean condition. The condition is evaluated after the code is executed once, and executes repeatedly until the condition is false.
What is a 'do-while statement'?
500
This method binds one or two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
What is .hover()?
500
This is the intrinsic type that all objects inherit from in JavaScript
What is Object?
500
This tag defines a hyperlink, which is used to link from one page to another.
What is an 'a' tag?
500
This is the meaning of the CSS acronym.
What is Cascading Style Sheet?
500
This flow control statement is used to allow the value of a variable or expression to change the control flow of program execution via a multiway branch.
What is a switch statement'?