HTML

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/31

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:00 AM on 5/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

32 Terms

1
New cards

What is a "Replaced Element"?

Elements img like or iframe where the content is an external file replaced by the browser.

2
New cards
What is UTF-8?
A character encoding that allows the display of almost all characters from all human languages.
3
New cards
What does SEO stand for?
Search Engine Optimization (making your site rank higher in search results).
4
New cards
What are the 3 tags for a Description List?

<dl>(list), <dt>(term), and

<dd>(description/details).

5
New cards
Which tag represents a date or time?

The <time> element.

6
New cards
Which tag is used for inline code?

The <code> tag

7
New cards
How do you move "up" a folder in a path?
Use ../ (Double dot, forward slash).
8
New cards
How do you open a link in a new tab?
Add the attribute target="_blank".
9
New cards

What are <fieldset> and <legend>?

<fieldset> groups related inputs; <legend> provides the caption for that group.

10
New cards
What is the difference between size and minlength?
size is visual width; minlength is a rule for how many characters must be typed.
11
New cards
How do you make a table cell span 3 columns?
Use the attribute colspan="3".
12
New cards
What tag is used for self-contained content?

The <article> tag.

13
New cards
HTML Validator
A tool that checks if HTML syntax is valid and follows rules.
14
New cards
POUR (WCAG)
The 4 principles: Perceivable, Operable, Understandable, Robust.
15
New cards
Accessibility Auditing Tools
Google Lighthouse, Wave, IBM Equal Accessibility Checker, and axe DevTools.
16
New cards
Screen Readers
Software that reads screen content out loud for blind or visually impaired users.
17
New cards
Table Accessibility Tag
(defines header cells so screen readers understand the structure).
18
New cards
Audio/Video Accessibility
Provide captions/transcripts (hearing) and audio descriptions (visual).
19
New cards
WAI-ARIA
Web Accessibility Initiative - Accessible Rich Internet Applications.
20
New cards
tabindex rules
Use only 0 (focusable) or -1 (hidden from keyboard). Never use > 0.
21
New cards
accesskey attribute
Defines a keyboard shortcut for a specific element.
22
New cards
aria-label vs aria-labelledby
aria-label defines the name directly; aria-labelledby references existing text by its ID.
23
New cards
aria-hidden="true"
Hides an element (like a decorative icon) from screen readers.
24
New cards
aria-describedby
Associates an element with another element that provides extra description.
25
New cards
DOM Inspector
A tool to inspect and modify the HTML structure of a webpage in the browser.
26
New cards
DevTools
A set of browser tools used to debug, profile, and analyze web pages.
27
New cards
Voice Recognition
Allows users with mobility impairments to control the computer via voice.
28
New cards
Alternative Pointing Devices
Joysticks, trackballs, and touchpads for those with mobility issues.
29
New cards
Meaningful Link Text
Avoid "Click Here"; use descriptive text so screen reader users know the destination.
30
New cards
Logical Heading Structure
Using h1-h6 in order helps assistive technology understand page structure.
31
New cards
Alt Text
Provides a text alternative for images for screen reader users.
32
New cards
ARIA Roles
Predefined roles (like role="alert" or "menu") that define an element's purpose.