The outer limits
Ear in the middle
Inner sanctum
CSS
Flow Control
100

The black hole of the outer ear.

What is the external auditory meatus.

100

The middle, middle ear bone.

What is the incus?

100

This tag defines a paragraph.

What is a 'p' tag?

100
These CSS properties define the space between the element border and the element content.
What is padding?
100
If this statement evaluates to false and an else clause exists, the statement associated with the else clause runs. If the test statement evaluates to true, the statement following the expression runs and the else clause is ignored.
What is an 'if statement'?
200

The name the part of the ear on the outside of the head.

What is the pinna.

200

Not the tensor tympani but the ...

What is stapedius?

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

Lining of the outer ear

What is epithelium 

300

Structure that allows pressure equalization in the middle ear.

What is the eustachian tube?

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

The middle ear lining.

What is Mucosal?

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

The physiology of the outer ear

What is resonance.

500

The stapes fits in the _____ window.

What is the oval window.

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'?