ProTechSolution
Home
Courses
Exercises
Quiz
Roadmaps
Experts
Login
Sign Up
Bootstrap 5 UI
Programming Concepts
HTML & CSS Masterclass
HTML
CSS
JavaScript
PHP
MySQL
Bootstrap 5
C#
HTML Certification Quiz
Test your knowledge to earn your official course certificate!
1. In HTML, what does the <aside> element define?
Content aside from the page content
A navigation list to be shown at the left side
The ASCII character-set
A footnote
2. The HTML <canvas> element is used to:
manipulate data in SQL
draw graphics, on the fly, via scripting
display database records
create complex animations without JS
3. Which HTML element is used to specify a header for a document or section?
<top>
<head>
<header>
<heading>
4. Which doctype is correct for HTML5?
<!DOCTYPE html>
<!DOCTYPE HTML5>
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 5.0//EN'>
<!DOCTYPE>
5. What is the correct HTML element for playing video files?
<media>
<video>
<movie>
<audio>
6. The HTML global attribute, 'contenteditable' is used to:
Update content from the server
Return the spelling of content
Specify whether the content of an element should be editable or not
Create a form
7. HTML comments start with <!-- and end with -->
True
False
They start with //
They start with /*
8. What is the correct HTML for creating a hyperlink?
<a url='http://www.w3schools.com'>W3Schools.com</a>
<a href='http://www.w3schools.com'>W3Schools</a>
<a>http://www.w3schools.com</a>
<a name='http://www.w3schools.com'>W3Schools.com</a>
9. Which HTML element defines the title of a document?
<title>
<meta>
<head>
<h1>
10. How can you make a bulleted list?
<ol>
<dl>
<ul>
<list>
11. What is the purpose of the <figcaption> element?
To define a figure
To add a caption to a <figure> element
To create a mathematical formula
To link an image
12. Inline elements are normally displayed without starting a new line.
True
False
Sometimes
Only in HTML5
13. Which of these elements are all <table> elements?
<table><tr><tt>
<table><tr><td>
<thead><body><tr>
<table><head><tfoot>
14. Which attribute is used to provide a tooltip for an element?
alt
info
title
tooltip
15. Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
title
alt
src
longdesc
16. What is the correct HTML for making a drop-down list?
<input type='dropdown'>
<select>
<list>
<dropdown>
17. Which HTML5 element represents an independent, self-contained content?
<section>
<article>
<main>
<div>
18. Which HTML element is used to specify a footer for a document or section?
<bottom>
<footer>
<section>
<div>
19. Which element is used to define a description list?
<ul>
<ol>
<dl>
<list>
20. What is the correct HTML for adding a background color?
<background>yellow</background>
<body bg='yellow'>
<body style='background-color:yellow;'>
<body style='bg:yellow;'>
Submit Quiz (20 Questions)