Html elements in english language

Descripción

Test sobre Html elements in english language, creado por philipp pape el 27/10/2016.
philipp pape
Test por philipp pape, actualizado hace más de 1 año
philipp pape
Creado por philipp pape hace casi 8 años
21
1

Resumen del Recurso

Pregunta 1

Pregunta
Which element represents the root of an HTML document?
Respuesta
  • <header>
  • <html>
  • <*>
  • <main>
  • <head>

Pregunta 2

Pregunta
Fill the gaps to complete the text. The elements <[blank_start]h1[blank_end]>, <[blank_start]h2[blank_end]>, <[blank_start]h3[blank_end]>, <[blank_start]h4[blank_end]>, <[blank_start]h5[blank_end]>, <[blank_start]h6[blank_end]> define the header of different hierarchies. There are six different hierarchy levels, where <[blank_start]h1[blank_end]> is the main heading, and <[blank_start]h6[blank_end]> 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 <[blank_start]blockquote[blank_end]> element. A short quotation within a text is marked with <[blank_start]q[blank_end]>. A link is awarded the <[blank_start]a[blank_end]> element.
Respuesta
  • h1
  • h2
  • h3
  • h4
  • h5
  • h6
  • h1
  • h6
  • blockquote
  • q
  • a

Pregunta 3

Pregunta
For which element is this description? "A substantive section that is larger than an article." Choose one of the following
Respuesta
  • <figure>
  • <section>
  • <div>
  • <p>

Pregunta 4

Pregunta
What is the correct basic framework of an HTML page? Choose one of the following:
Respuesta
  • <main><head></head><body></bod<></main>
  • <header></header><body></body>
  • <html><head></head><body></body></html>
  • <head></head><main><body></body><footer></footer></main>

Pregunta 5

Pregunta
How can external CSS files be integrated into an HTML page?
Respuesta
  • 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.

Pregunta 6

Pregunta
Which element represents a section that contains only navigation links.
Respuesta
  • <aside>
  • <menue>
  • <nav>
  • <header>

Pregunta 7

Pregunta
Fill the gaps to complete the text: The <[blank_start]em[blank_end]> element stands for highlighted text. <[blank_start]Strong[blank_end]> highlights particularly important, highly emphasized text. The <[blank_start]i[blank_end]> 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 <[blank_start]b[blank_end]> 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. <[blank_start]U[blank_end]> 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.
Respuesta
  • em
  • Strong
  • i
  • b
  • U

Pregunta 8

Pregunta
Lists can be distinguished in different ways: <[blank_start]ol[blank_end]> defines a list where the entries must have a certain order. <[blank_start]ul[blank_end]>, on the other hand, defines a list of disordered entries. <[blank_start]li[blank_end]> indicates a list entry. This is often preceded by a bullet.
Respuesta
  • ol
  • ul
  • li

Pregunta 9

Pregunta
To include an image that is part of the content, use the <[blank_start]figure[blank_end]> element. A corresponding caption is awarded <[blank_start]figcaption[blank_end]>.
Respuesta
  • figure
  • figcaption

Pregunta 10

Pregunta
The basic structure of an Html 5 page is as follows: Within the root element <[blank_start]html[blank_end]> are the two necessary elements <[blank_start]head[blank_end]> and <[blank_start]body[blank_end]>. The <[blank_start]body[blank_end]> element contains all the contents of the page. It is often divided into content sections. The <[blank_start]header[blank_end]> 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 <[blank_start]main[blank_end]> 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 <[blank_start]footer[blank_end]> element.
Respuesta
  • html
  • head
  • body
  • body
  • header
  • main
  • footer

Pregunta 11

Pregunta
The <[blank_start]article[blank_end]> element encloses a content article, which can contain several paragraphs but is less than a <[blank_start]section[blank_end]> element.
Respuesta
  • article
  • section

Pregunta 12

Pregunta
<[blank_start]small[blank_end]> 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.
Respuesta
  • small

Pregunta 13

Pregunta
<h3> Football table <h3> <[blank_start]ol[blank_end]> <[blank_start]li[blank_end]> Bayern München </[blank_start]li[blank_end]> <[blank_start]li[blank_end]> Leipzig </[blank_start]li[blank_end]> <[blank_start]li[blank_end]> Dortmund </[blank_start]li[blank_end]> </[blank_start]ol[blank_end]>
Respuesta
  • ol
  • li
  • li
  • li
  • li
  • li
  • li
  • ol

Pregunta 14

Pregunta
What do I select exactly when I write the following selector: p {}
Respuesta
  • All elements of class p
  • The first paragraph of the website
  • All paragraphs within the first parent element
  • All paragraphs of the html document.

Pregunta 15

Pregunta
With which character is an id selector indicated?
Respuesta
  • *
  • .
  • #
  • i
  • _

Pregunta 16

Pregunta
By which spelling I can address all p and q elements?
Respuesta
  • p + q
  • p > q
  • p q
  • p, q

Pregunta 17

Pregunta
By what spelling can I address all q elements that are within p elements?
Respuesta
  • p > q
  • p q
  • q, p
  • q > p

Pregunta 18

Pregunta
What is the difference between the expressions "div p" and "div> p"?
Respuesta
  • 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.

Pregunta 19

Pregunta
Which expression selects all paragraphs that follow directly a h3 heading?
Respuesta
  • h3 p
  • h3>p
  • h3+p
  • h3,p

Pregunta 20

Pregunta
How to select all the ul elements preceded by a p-element?
Respuesta
  • p>ul
  • p ul
  • p ~ ul
  • p+ul
Mostrar resumen completo Ocultar resumen completo

Similar

Historia Argentina
Nicolas Ñancucheo
antonimos I
Kioshi Gonzales
Phrasal Verbs Ingles/español
alba mateos figueroa
Qué Carrera Estudiar
Diego Santos
mapa mental historia de la psicologia
Marcela Zapata
Músculos del hombro
Nadim Bissar
INCONTINENCIA Y PROLAPSO
Luz Moor
ESTUDIANTE
Omar valeta
3. La independencia de la América Hispana (1808-1826)
albavillenerals