 Call Kai
Call Kai Learn
Learn Practice Test
Practice Test Spaced Repetition
Spaced Repetition Match
Match1/99
Looks like no tags are added yet.
| Name | Mastery | Learn | Test | Matching | Spaced | 
|---|
No study sessions yet.
Which tag defines the largest heading?
<h1>
Which tag creates a paragraph?
<p>
What does HTML stand for?
HyperText Markup Language
What is the correct document type for HTML5?
<!DOCTYPE html>
Which tag contains metadata like the page title?
<head>
Which tag displays content in the browser window?
<body>
Which tag creates a line break?
<br>
Which tag draws a thematic horizontal line?
<hr>
Which tag creates a hyperlink?
<a>
Which attribute sets the link destination?
href
Which tag inserts an image?
<img>
Which attribute provides image source?
src
Which attribute describes an image for accessibility?
alt
Which tag makes text bold semantically important?
<strong>
Which tag italicizes and emphasizes text semantically?
<em>
Which element creates an unordered list?
<ul>
Which element creates an ordered list?
<ol>
Which element represents a list item?
<li>
Which tag creates a table?
<table>
Which tag defines a table row?
<tr>
Which tag defines a standard table cell?
<td>
Which tag defines a header cell in a table?
<th>
Which element groups table header content?
<thead>
Which tag is used for table body content?
<tbody>
Which tag groups table footer content?
<tfoot>
Which tag defines a division or section?
<div>
Which tag is an inline container?
<span>
Which element represents the main content?
<main>
Which tag defines a navigation section?
<nav>
Which tag defines self-contained content like a blog post?
<article>
Which element defines content indirectly related to the main content (sidebar)?
<aside>
Which tag defines the page footer?
<footer>
Which tag defines the page header?
<header>
What tag is used to add a comment in HTML?
<!-- comment -->
Which attribute gives a unique identifier to an element?
id
Which attribute groups elements for styling?
class
Which attribute allows inline CSS on an element?
style
Which tag links an external stylesheet?
<link rel="stylesheet" href="...">
Which tag contains internal CSS?
<style>
Which tag embeds JavaScript?
<script>
Which attribute opens a link in a new tab?
target="_blank"
What does the lang attribute set on <html>?
Page language
Which meta tag sets the character encoding to UTF-8?
<meta charset="UTF-8">
Which meta tag sets responsive viewport?
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Which element creates a form?
<form>
Which attribute sets the form submission URL?
action
Which attribute sets the HTTP method for a form?
method
Which input type creates a password field?
type="password"
Which tag labels form controls for accessibility?
<label>
Which attribute connects <label> to an input?
for (label) + matching input id
Which input type creates a checkbox?
type="checkbox"
Which input type allows a single selection from options?
radio
How do you group radio buttons?
Same name
Which tag makes a dropdown list?
<select>
Which tag defines options inside <select>?
<option>
Which input type selects a date?
type="date"
Which attribute makes an input required?
required
Which attribute provides a hint inside an input?
placeholder
Which input type is for numeric input?
type="number"
Which tag groups form controls with a caption?
<fieldset>
Which element provides the caption for a <fieldset>?
<legend>
Which attribute disables a form control?
disabled
Which attribute makes an input read-only but submit its value?
readonly
Which tag is used for a multiline text input?
<textarea>
Which tag defines a line of code snippet inline?
<code>
Which tag preserves spaces and line breaks in blocks?
<pre>
Which tag is used for quotations that are block-level?
<blockquote>
Which element is for short inline quotes?
<q>
Which tag indicates contact information?
<address>
Which element represents a figure with an optional caption?
<figure>
Which element provides a caption for <figure>?
<figcaption>
Which tag embeds another HTML page?
<iframe>
Which element is used to embed audio?
<audio>
Which attribute on <audio> adds playback controls?
controls
Which element embeds video?
<video>
Which attribute makes media start automatically (use carefully)?
autoplay
Which attribute mutes a video?
muted
Which element is used for scalable vector graphics?
<svg>
Which element provides a scriptable drawing surface?
<canvas>
Which tag sets the page title in the browser tab?
<title>
Which attribute on <img> sets alternative image text?
alt
What is the correct way to force a non-breaking space?
 
Which tag is used to define a description list?
<dl>
Which tag defines a term in a description list?
<dt>
Which tag defines the description in a description list?
<dd>
Which element is best for marking up navigation breadcrumbs semantically?
<nav>
Which attribute provides a tooltip on hover for many elements?
title
Which tag groups related options in a <select> ?
<optgroup>
Which input type lets users upload files?
type="file"
Which attribute provides an input’s initial value?
value
Which attribute on <form> prevents validation on submit?
novalidate
Which attribute on <input type="email"> hints the input format?
pattern
Which attribute limits the maximum length of text inputs?
maxlength
Which attribute specifies an image size hint for layout?
height/width
Which element is best for the page’s primary heading?
<h1>
Which tag is used to include a favicon?
<link rel="icon" href="...">
Which element provides machine-readable page info for SEO/social?
<meta>
Which tag indicates time or date content?
<time>
Which element wraps the whole HTML document?
<html>
Which tag improves accessibility by skipping to main content?
<a href="#main">Skip to content</a>