Font size
WorksheetsWS101
Total questions: 70
Worksheet time: 1hrs 3mins
A web developer is structuring a company's "News" section, which contains self-contained articles. Which HTML5 semantic tag is best for wrapping each individual news story?
<div>
<section>
<article>
<main>
A user needs to register on a website and must select only one degree program from a list of five. Which HTML input type should the developer use?
type="checkbox"
type="select"
type="radio"
type="list"
You are linking to an external website, www.google.com, from your current webpage. Which type of URL must you use?
Relative URL
Absolute URL
Static URL
Anchor URL
A design team needs to display a monthly budget report that requires precise alignment of data into rows and columns. Which HTML structure should they prioritize?
HTML List ( or )
HTML Division ()
HTML Table ()
HTML Form ()
You want to emphasize a warning message in a paragraph to be read aloud by a screen-reader with extra stress. Which HTML tag is recommended for this semantic purpose?
A government agency is utilizing online portals for citizens to access public information and renew licenses digitally. Which significance of the Internet does this represent?
E-commerce
Education
Communication
Governance
When creating a hyperlink, you want the linked document to open in a new browser tab or window. Which value should be set for the target attribute?
_parent
_top
_self
_blank
You are designing a form and want to combine a header cell to span across three columns in the first row of a summary table. Which attribute would you use on the tag?
rowspan
cellspacing
colspan
rowmerge
A historian is referencing the title of a newly published book within an article. Which HTML tag is most appropriate for marking the title of the creative work?
A web application needs to store non-visual data that must be submitted with the form but should not be seen or modified by the user. Which input type should be used?
type="text"
type="file"
type="hidden"
type="password"
Which Internet development enabled streaming video, online gaming, and rich media experiences due to "always-on" high-speed connectivity?
ARPANET
World Wide Web
Broadband Internet
Cloud Computing
You need to define the character set, viewport settings, and the title of your web page. Which main section of the HTML document must contain this metadata?
A website is transitioning from old-style text formatting to more semantic HTML5 elements. They are replacing the tag with an element that signals an alternate voice or mood to the browser. Which tag is the best replacement?
A student is writing an essay and needs to include the chemical formula for water, H2O. Which HTML tag should be used for the number '2' to position it correctly?
A developer wants to create a form field specifically tailored to receive a valid email address, often triggering a specialized keyboard layout on mobile devices. Which input type is most semantic?
type="text"
type="url"
type="email"
type="search"
Which core function of the Internet is primarily responsible for sending and receiving messages and files between interconnected computers?
Remote Access
Global Connectivity
Data Transmission
Cloud Storage
To adjust the space between the cell edge and the cell content inside an HTML table, which CSS property is applied to the th and td elements?
margin
border-spacing
padding
border-collapse
The foundational concept of linking pages using Hypertext was made user-friendly and accessible primarily by the invention of:
ARPANET
The World Wide Web
Broadband Internet
A developer needs to bind a text label to a specific input field so that clicking the label focuses the input. Which attribute linkage must be used?
The name must equal the name.
The for must equal the id.
The id must equal the for.
The title must equal the value.
A new web feature requires the display of graphics and animations directly within the browser, without external plugins. Which HTML5 element was introduced to handle this?
A web team is retiring old content and wants to show users which parts of a sentence have been removed, visually represented by a strikethrough line. Which tag should they use?
<del>
<ins>
<strike>
<sub>
A company wants to use a single input box for users to search the website, where the browser might offer suggestions based on previous entries. Which input type is most appropriate?
type="text"
type="search"
type="url"
type="tel"
Which development phase introduced powerful elements like and for better multimedia support?
HTML 2.0
HTML 4.0
HTML5
The Birth of HTML
Which CSS property is used on the element to control the space between individual table cells?
padding
border-spacing
cellspacing
margin
The use of cloud computing services like AWS and Google Drive primarily relates to which aspect of the Internet's evolution?
Mobile Internet
Email & Browsers
Cloud Computing & IoT
Broadband Internet
The earliest operational packet-switching network developed by the U.S. Department of Defense's ARPA, laying the foundation for the modern Internet.
(a)
The standard markup language used for creating Web pages, describing their structure.
(a)
The protocol invented by Tim Berners-Lee used for transferring and viewing web pages.
(a)
The W3C-adopted standard that introduced semantic elements like , , and <nav>.
(a)
The HTML tag that defines a row in a table.
(a)
The HTML tag used to define a short, inline quotation, which browsers normally insert quotation marks around.
(a)
The element that serves as the root element of an HTML page.
(a)
The value of the link's target attribute that tells the browser to open the linked document in the current window or tab.
(a)
The HTML attribute used on a table cell ( or ) to make it span over multiple rows.
(a)
The element used in an HTML form as a container for different input elements.
(a)
The person credited for sending the first networked email in 1971.
(a)
The HTML tag that defines an abbreviation or acronym, providing useful information to translation systems and search engines.
(a)
The first graphical web browser, whose release in 1993 made the Web visually engaging and widely adopted.
(a)
A standardized address for locating resources online.
(a)
The most used form element, whose display type is defined by the type attribute.
(a)
The HTML tag that defines a table header cell.
(a)
The HTML tag used for contact information for the author/owner of a document.
(a)
The input type that allows a user to select zero or more options from a limited number of choices.
(a)
The core function of the Internet that allows access to systems and services from a distant location.
(a)
The HTML tag introduced in Module 3 for text that should be marked or highlighted.
(a)
The organization that developed the first version of HTML in 1991 to allow scientists to share documents over the internet.
(a)
The element in an HTML document that contains metadata, the document title, and links to external style sheets or scripts.
(a)
The element used to define a multiline text input control within an HTML form.
(a)
The Internet development phase marked by the launch of the iPhone and the widespread use of 3G/4G networks.
(a)
The HTML tag used to define superscript text, often used for footnotes.
(a)
Which option correctly defines the document type for HTML5?
<DOCTYPE html>
<!DOCTYPE html>
<doctype html>
<!DOCTYPE html5>
Which is the correct way to add a comment in HTML?
// This is a comment
``
# This is a comment
`/* This is a comment */`
How do you correctly link to an email address to open the user's default email client?
`<a src="mailto:info@a.com">Email</a>`
`<a href="info@a.com">Email</a>`
`<a href="mailto:info@a.com">Email</a>`
`<email link="info@a.com">Email</email>`
Which attribute is used within a `<form>` element to specify the file/script on the server that will process the input data?
`method`
`action`
`target`
`handler`
Which tag pair correctly defines a standard data cell in an HTML table?
`<cell>` and `</cell>`
`<td>` and `</td>`
`<th>` and `</th>`
`<tr>` and `</tr>`
How is an image correctly used as a hyperlink?
`<img href="page.html" src="pic.jpg">`
`<a href="page.html"> <img src="pic.jpg"> </a>`
`<link href="page.html" image="pic.jpg">`
`<img> <a href="page.html">pic.jpg</a> </img>`
Which input type is used to create a button for submitting form data?
`<input type="button">`
`<input type="submit">`
`<button type="submit">`
Both B and C are valid ways to submit form data
Which is the correct HTML structure to create a bold, non-important text display?
`<bold>Text</bold>`
`<p><b>Text</b></p>`
`<p><strong>Text</strong></p>`
`<p><emp>Text</emp></p>`
Which element sets the title that appears in the browser tab?
`<title>`
`<header>`
`<head>`
`<h1>`
Which attribute allows table cell content to span horizontally across two or more columns?
`rowspan`
rowmerge`'
`colspan`
`colmerge`
Which is the correct way to define a single-line input field for text?
`<input text="field">`
`<input type="text">`
`<field type="text">`
`<input name="text">`
Which tag is the semantic alternative to the visual-only `<b>` tag for conveying extra importance?
`<em>`
<i>
`<strong>`
`<abbr>`
Which is the standard way to enforce single borders on a table by making double borders collapse?
`border: 1px solid black;`
`border-collapse: collapse;`
border-style: solid;`
`border-spacing: 0;`
Which tag defines the overall table structure?
`<tables>`
`<table>`
`<tab>`
`<data-table>`
Which input type is designed to accept file uploads from the user?
`<input type="data">`
`<"input type=upload">`
`<input type="upload">`
`<input type="document">`
Which element is specifically used to create a dropdown list of options in a form?
`<input type="list">`
`<select>`
`<datalist>`
`<choices>`
Which tag is used to define an inserted text segment, typically rendered with an underline by browsers?
`<ins>`
`<in>`
`<mark>`
`<subins>`
Which is the HTML tag for a line break?
`<break>`
` <br>'
`<lb>`
`<hr>`
Which set of tags introduced structural semantics to HTML5 for defining content like sidebars or navigation links?
`<div>`, `<span>`, `<a>`
`<b>`, `<i>`, `<u>`
`<section>`, `<article>`, `<nav>`
`<form>`, `<table>`, `<label>`
Which element in a form is used to define a label that is click-able and can toggle a radio button or checkbox?
`<p>`
`<legend>`
`<label>`
`<span>`
