Development Html5 Questionnaire
Development Html5 Questionnaire
1412884
BOGOTA
2018
After so much reading, analyzing the read text, watching videos and
improving it, HTML5 is all you need to know.
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
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
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.