NEW
Font size
WorksheetsQUIZ for Web Development
Total questions: 40
Worksheet time: 20mins
What is the primary function of HTML?
To create databases for websites
To design user interfaces for mobile apps
To create and structure content on the web
To manage online transactions
What is the purpose of the <br> element in HTML?
To create a paragraph
To create a line break
To create a heading
To create a table
What is the purpose of the <link> element in HTML?
To link to an external script
To link to an external stylesheet
To link to an external image
To link to an external font
What is the purpose of the <thead>, <tfoot>, and <tbody> elements in HTML?
To create table rows
To create table columns
To create table headers, footers, and bodies
To create table data
What is the purpose of the <colspan> attribute in HTML?
To create a table footer
To create a table header
To join two or more rows in a table
To join two or more columns in a table
What is the purpose of the <table> element in HTML?
To create tables for data organization
To create forms
To create headings
To create paragraphs
What is the purpose of the <input> element in HTML?
To create forms for user input
To create tables for data organization
To create headings
To create paragraphs
What is the syntax for creating a relative URL in HTML?
What is the purpose of the <th> element in HTML?
To create table data
To create table rows
To create table columns
To create table headers
What is the purpose of the <strong> element in HTML?
To create headings
To create italic text
To create bold text
To create paragraphs
Who introduced HTML in 1993?
Larry Page
Bill Gates
Steve Jobs
Tim Berners-Lee
What is the term for the "HyperText" part of HTML?
How users interact with web pages
How content is displayed on the web
How links work on the web
How web pages are structured
What is the purpose of the <html> element in HTML?
To create the document type definition
To create the root element of the HTML document
To create the page title
To create the page description
What is the purpose of the <meta> element in HTML?
To specify page title
To specify character coding
To specify page description
All of the above
What is the purpose of the <table> element in HTML?
To create forms
To create headings
To create tables for data organization
To create paragraphs
Which tag is used to create an unordered list in HTML?
<ul>
<ol>
<li>
<dl>
What is the name of the organization responsible for managing the specifications of HTML?
World Wide Web Consortium (W3C)
Internet Engineering Task Force (IETF)
HTML Association
Web Standards Organization
Which input type is used to create a radio button in an HTML form?
text
checkbox
radio
button
What is the purpose of the <form> element in HTML?
To create tables
To create forms for user input
To create headings
To create paragraphs
Which tag is used to define a text area in an HTML form?
<input type="text">
<textarea>
<form>
<label>
What is the name of the latest version of HTML?
HTML4
HTML5
HTML6
HTML7
Which tag is used to embed an image in an HTML webpage?
<a>
<img>
<link>
<div>
What is the purpose of the <p> element in HTML?
To create headings
To create paragraphs
To create links
To create tables
What is the syntax for creating a link in HTML?
<a href="URL">Label</a>
<a label="URL">Label</a>
<a href="Label">URL</a>
<a label="Label">URL</a>
What attribute is used to specify a unique ID for HTML elements?
class
id
name
value
What attribute is used to specify the path of an image in the <img> tag?
src
href
path
alt
What attribute is used within the <video> tag to specify a thumbnail image before playing the video?
controls
src
poster
alt
What input type is used to create a checkbox in an HTML form?
text
checkbox
radio
button
What is the purpose of the alt attribute in the <img> tag?
To define the image source
To specify the image size
To provide an alternate text for the image
To set the image alignment
Which tag is used to define a section for navigation links?
<section>
<nav>
<header>
<footer>
What tag is used to define a description list in HTML?
<ol>
<ul>
<dl>
<li>
What attribute is used to specify the unique identifier for an HTML element?
id
class
name
value
Which tag is used to create a canvas for drawing graphics in HTML?
<img>
<svg>
<draw>
<canvas>
Which tag is used to define a text input field in an HTML form?
<input type="password">
<input type="email">
<input type="text">
<input type="submit">
Which attribute is used to define the width and height of an image in HTML?
alt
src
width and height
title
Which tag is used to create an ordered list in HTML?
<ol>
<ul>
<li>
<dl>
What does the <span> tag primarily used for in HTML?
To define a division or section
To mark up or color a part of the text
To create an ordered list
To embed an image
Which tag is used to define a term in a description list?
<dt>
<dd>
<dl>
<li>
Which tag is used to define a division or section in an HTML document?
<div>
<section>
<header>
<footer>
Which tag is used to embed an audio file in an HTML document?
<source>
<embed>
<video>
<audio>
