philipp pape
Quiz by , created more than 1 year ago

Quiz on Html elements in english language, created by philipp pape on 27/10/2016.

21
1
0
No tags specified
philipp pape
Created by philipp pape over 7 years ago
Close

Html elements in english language

Question 1 of 20

1

Which element represents the root of an HTML document?

Select one of the following:

  • <header>

  • <html>

  • <*>

  • <main>

  • <head>

Explanation

Question 2 of 20

1

Fill the blank spaces to complete the text.

Fill the gaps to complete the text.

The elements <>, <>, <>, <>, <>, <> define the header of different hierarchies. There are six different hierarchy levels, where <> is the main heading, and <> is the bottom level heading. A heading briefly describes the topic of the section to which it is heading.
The following paragraph is awarded with the <p> element. A longer standalone quote is awarded with a <> element. A short quotation within a text is marked with <>. A link is awarded the <> element.

Explanation

Question 3 of 20

1

For which element is this description?
"A substantive section that is larger than an article."
Choose one of the following

Select one of the following:

  • <figure>

  • <section>

  • <div>

  • <p>

Explanation

Question 4 of 20

1

What is the correct basic framework of an HTML page?
Choose one of the following:

Select one of the following:

  • <main><head></head><body></bod<></main>

  • <header></header><body></body>

  • <html><head></head><body></body></html>

  • <head></head><main><body></body><footer></footer></main>

Explanation

Question 5 of 20

1

How can external CSS files be integrated into an HTML page?

Select one of the following:

  • Styles must always be defined within the html page.

  • CSS files can be embedded using the <style> element.

  • External style files can be included with the <link> element.

Explanation

Question 6 of 20

1

Which element represents a section that contains only navigation links.

Select one of the following:

  • <aside>

  • <menue>

  • <nav>

  • <header>

Explanation

Question 7 of 20

1

Fill the blank spaces to complete the text.

Fill the gaps to complete the text:
The <> element stands for highlighted text. <> highlights particularly important, highly emphasized text. The <> element represents a section of text, which is derived from the rest of the content and is usually displayed in italics, without a special emphasis or importance, ie an integrated distinction. The <> element stands for a text section, which is offset from the rest of the content and is usually displayed in bold, without a special emphasis or importance. This may be, for example, a keyword or a product name in a product evaluation.
<> Represents a section of text that is offset from the rest of the content and is usually underlined, without any particular emphasis or importance. This could be, for example, a proper name or a text section that is often spelled incorrectly.

Explanation

Question 8 of 20

1

Fill the blank spaces to complete the text.

Lists can be distinguished in different ways:
<> defines a list where the entries must have a certain order.
<>, on the other hand, defines a list of disordered entries.
<> indicates a list entry. This is often preceded by a bullet.

Explanation

Question 9 of 20

1

Fill the blank spaces to complete the text.

To include an image that is part of the content, use the <> element. A corresponding caption is awarded <>.

Explanation

Question 10 of 20

1

Fill the blank spaces to complete the text.

The basic structure of an Html 5 page is as follows:
Within the root element <> are the two necessary elements <> and <>.
The <> element contains all the contents of the page. It is often divided into content sections. The <> element defines the header of a page or section. It often contains a logo, the title of the site, and the site navigation. The main part of a page is enclosed by the <> element.
For a marginal note, which is not directly related to the main text, use the <aside> element. The rest of the content should also be understandable when this element is removed.
The foot part of a page or section often contains copyright notices, a link to the imprint or contact address, and is clothed in the <> element.

Explanation

Question 11 of 20

1

Fill the blank spaces to complete the text.

The <> element encloses a content article, which can contain several paragraphs but is less than a <> element.

Explanation

Question 12 of 20

1

Fill the blank space to complete the text.

<> stands for the "small print" of a document, such as exclusion clauses, copyright notices or other things that are not absolutely necessary for the understanding of the document.

Explanation

Question 13 of 20

1

Fill the blank spaces to complete the text.

<h3> Football table <h3>
<>
<> Bayern München </>
<> Leipzig </>
<> Dortmund </>
</>

Explanation

Question 14 of 20

1

What do I select exactly when I write the following selector:
p {}

Select one of the following:

  • All elements of class p

  • The first paragraph of the website

  • All paragraphs within the first parent element

  • All paragraphs of the html document.

Explanation

Question 15 of 20

1

With which character is an id selector indicated?

Select one of the following:

  • *

  • .

  • #

  • i

  • _

Explanation

Question 16 of 20

1

By which spelling I can address all p and q elements?

Select one of the following:

  • p + q

  • p > q

  • p q

  • p, q

Explanation

Question 17 of 20

1

By what spelling can I address all q elements that are within p elements?

Select one of the following:

  • p > q

  • p q

  • q, p

  • q > p

Explanation

Question 18 of 20

1

What is the difference between the expressions "div p" and "div> p"?

Select one of the following:

  • The second example selects only the direct children of a div, but not those that are nested within the divs in other elements.

  • Both expressions select the same.

  • The first example selects only the direct children of a div, but not those that are within the divs in other elements.

  • The first example selects all divs and ps.

Explanation

Question 19 of 20

1

Which expression selects all paragraphs that follow directly a h3 heading?

Select one of the following:

  • h3 p

  • h3>p

  • h3+p

  • h3,p

Explanation

Question 20 of 20

1

How to select all the ul elements preceded by a p-element?

Select one of the following:

  • p>ul

  • p ul

  • p ~ ul

  • p+ul

Explanation