0% found this document useful (0 votes)
37 views4 pages

Development Html5 Questionnaire

The document is a 12 question multiple choice HTML5 quiz that tests knowledge of important HTML5 concepts like valid elements, attributes, and usages. The questions cover topics like valid doctypes, navigation elements, script types, form inputs, and new features of elements like <a> and <canvas>. Upon completion, the quiz checks how well the test-taker has learned key aspects of HTML5.

Uploaded by

fgkfiif
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views4 pages

Development Html5 Questionnaire

The document is a 12 question multiple choice HTML5 quiz that tests knowledge of important HTML5 concepts like valid elements, attributes, and usages. The questions cover topics like valid doctypes, navigation elements, script types, form inputs, and new features of elements like <a> and <canvas>. Upon completion, the quiz checks how well the test-taker has learned key aspects of HTML5.

Uploaded by

fgkfiif
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

DEVELOPMENT HTML5 QUESTIONNAIRE

FABIAN ANDRES FAJARDO ALARCON

1412884

SERVICIO NACIONAL DE APRENDIZAJE SENA

ANALISIS Y DESARROLLO DE SISTEMAS DE INFORMACION

BOGOTA

2018
After so much reading, analyzing the read text, watching videos and
improving it, HTML5 is all you need to know.

This first test can be considered an intermediate level of difficulty. It


is a small exam as a questionnaire with 12 multiple choice questions
to check how well we are learning HTML.

1. Which of the following Doctype is the one you would use for an HTML5
document?
<!doctype html5>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 5.0 Transitional//EN">
<!doctype html>

2. Select the element in which you would include the links of the primary
navigation of a site:
<section>
<menu>
<header>
<nav>

3. Which of the following uses of the <script> element do you think is the
most appropriate?

<script src="archivo.js"></script>
<script src="archivo.js" />
<script type="text/javascript" src="archivo.js"></script>
4. Select the invalid element:
<meter>
<hgroup>
<progress>
<post>

5. Which of the following scripts is generally used to detect JS, HTML5 and
CSS3 capabilities in the browser?
HTML5 Shim
Google Detector
Selectivizr
Modernizr

6. Select the valid input type


type=”boolean”
type=”textarea”
type=”alphanumeric”
type=”range”

7. If you had to create a search field, what would be most appropriate?


<input type="find" />
<input type="text" search />
<input type="search" />

8. Which of the following attributes allows to show a default value in an


input element, but which is erased when we focus on it?
content
placeholder
source
value
9. If you were designing a blog, in which of the following elements would
you put the links to the file, categories, social network icons, links to more
popular articles, etc?
<aside>
<section>
<summary>

10. For an input to have the focus as soon as the document is loaded, which
of the following solutions would you apply?
Utilizar el atributo booleano autofocus

Utilizar el atributo autofocus=”true”


Utilizar el atributo placeholder

11. What change could be considered the most important for the <a>
element in HTML5?
Puede apuntar a dos páginas distintas al mismo tiempo
Deja de ser de tipo “inline” y ahora puede contener cualquier otro elemento
dentro (ej: h1, p, etc.)
El nuevo atributo placeholder

12. What is the content used for within the <canvas> tag?
Se muestra como link, que al hacer click en él nos muestra el canvas.
Es el contenido alternativo que muestran solo los navegadores que no
soportan canvas.
Es el texto que le podemos añadir al canvas a modo de título.

You might also like