NEW
Font size
WorksheetsHTML5 Quiz I
Total questions: 29
Worksheet time: 10mins
What does HTML stand for?
Hyperlinks and Text Marking Language
Hyper Text Markup Language
Home Tool Markup Language
Hyper Transfer Markup Language
Which tag contains the main content shown in the browser window?
<head>
<body>
<title>
<!DOCTYPE>
Which is the correct HTML5 doctype?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!DOCTYPE xhtml>
<!DOCTYPE html>
<?DOCTYPE html?>
Which tag sets the text that appears in the browser tab?
<h1>
<meta>
<body>
<title>
Which tag is used to create a hyperlink?
<a>
<link>
<href>
<url>
Which attribute on <a> specifies the link’s destination?
src
href
alt
target
Which heading tag is the largest by default?
<h6>
<h1>
<h3>
<h4>
Which element creates a numbered (ordered) list?
<ul>
<dl>
<ol>
<li>
Which tag is used for items inside a list
( <ul> or <ol> )?
<li>
<dt>
<dd>
<p>
Which two attributes are most important on <img> ?
href and alt
src and title
src and alt
path and caption
Which element adds emphasis with meaning (often italic by default)?
<i>
<em>
<b>
<u>
Which element shows strong importance (often bold by default)?
<em>
<i>
<strong>
<b>
Which element is for italic text without extra meaning?
<em>
<i>
<strong>
<mark>
Which element is for bold text without extra meaning?
<b>
<strong>
<bold>
<small>
Which element highlights text (like a marker)?
<mark>
<marker>
<marks>
<kbd>
Which element is good for fine print or disclaimers?
<small>
<sub>
<sup>
<var>
Which element shows subscript text (e.g., H2O)?
<sup>
<sub>
<dfn>
<base>
Which element shows superscript text (e.g., x2)?
<power>
<sub>
<sup>
<s>
Which attribute shows an abbreviation’s full form on hover?
name
href
alt
title
Which element is best for short code snippets?
<kbd>
<samp>
<code>
<var>
Which Emmet shortcut expands to an HTML5 boilerplate?
doc:5
html:5
page:5
base:5
In Emmet, which symbol creates sibling elements?
>
*
^
+
In Emmet, which symbol creates a child element?
>
+
*
^
Which snippet makes header, article and footer as siblings?
header>article>footer
body>(header+article)>footer
header+article+footer
header+article>footer
Which Emmet snippet makes a list with three items?
ul>(li>a)*3
ul>li*3
ol>li*2
ul>li
Which URL scheme is used for a email link?
call:
mailto:
phone:
dial:
Clicking the logo in the header should go to which file?
KCC_menu.html
KCC_about.html
KCC_promotion.html
index.html
Which Emmet builds a description list with two term/definition pairs?
dl>dt*2+dd*2
dl>(dt>dd)*2
dl>(dt+dd)*2
dl>(dd+dt)*2
Which HTML element is used for site navigation links?
<aside>
<nav>
<section>
<footer>
