1/47
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
What is HTML?
A Markup Language used to structure web content.
What defines the HTML5 version?
<!DOCTYPE html>
What is the root element of an HTML page?
<html>
What tag contains metadata, like the title and CSS link?
<head>
What tag contains all the visible page content?
<body>
What tag links an external CSS file?
<link>
What tag defines the title shown in the browser tab?
<title>
What is the most important heading tag?
<h1>
What tag defines a paragraph?
<p>
What tag creates a hyperlink?
<a> (Anchor)
What attribute specifies a link's destination URL?
href
What attribute opens a link in a new browser tab?
target="_blank"
What tag is used to embed an image?
<img>
What attribute provides the image source URL?
src
What is the essential attribute for image accessibility?
alt (Alternative text)
What is the general-purpose block-level container tag?
<div>
What is the general-purpose inline-level container tag?
<span>
What tag creates an unordered (bulleted) list?
<ul>
What tag creates an ordered (numbered) list?
<ol>
What tag is used for any list item?
<li>
What tag defines a description list?
<dl>
What tag defines a term in a description list?
<dt>
What tag defines the description/definition in a description list?
<dd>
What tag defines the main content of a page?
<main>
What tag defines the navigation links?
<nav>
What tag defines the introductory section (e.g., site title)?
<header>
What tag defines content that is tangentially related (e.g., a sidebar)?
<aside>
What tag defines the bottom section, often with copyright info?
<footer>
What tag defines the author/owner contact information?
<address>
What tag is the container for user input fields?
<form>
What is the primary tag for a single data input field?
<input>
What tag defines a multi-line text input field?
<textarea>
What tag associates text with a form input?
<label>
What attribute on an input field ensures it must be filled out?
required
What HTML structure is used to present tabular data?
<table>
What tag defines a row in an HTML table?
<tr>
What tag defines a standard data cell?
<td>
What tag defines a header cell?
<th>
What attribute merges a cell over multiple columns?
colspan
What attribute merges a cell over multiple rows?
rowspan
What special character is used to display an empty table cell?
(Non-breaking space)
What tag defines an abbreviation or acronym?
<abbr>
What tag defines a specific date/time?
<time>
Which content model category do <link> and <meta> belong to?
Metadata content
Which content model category includes <h1>–<h6>?
Heading content
Which content model category includes elements like <a> and <span>?
Phrasing content
Why must forms use <label> tags for inputs (accessibility)?
Screen readers do not read placeholder values