Chapter 3: Advance HTML and XHTML Standards Flashcards

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

1/14

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards focusing on core concepts, syntax rules, semantic elements, and validator error types covered in Chapter 3.

Last updated 11:10 AM on 9/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

XHTML

Extensible HyperText Markup Language, a stricter syntax variant of HTML that requires well-formed markup.

2
New cards

Well-formed Markup

Markup that follows strict syntax rules, such as requiring every element to be closed, proper element nesting, and exactly one root element wrapping the document.

3
New cards

Void Element

An element with no content or closing tag that must be self-closed with a trailing slash in XHTML, such as
, , , or


.

4
New cards

W3C Markup Validator

The official online tool (validator.w3.org) that inspects a document's code directly against the published specification, reporting specific line and column errors.

5
New cards

Root Element

The single outermost element in a document (such as ) that wraps all other content.

6
New cards

Conformance Error

A specific, named rule violation reported by a validator (such as an unclosed tag or unquoted attribute) tied to an exact line and column that keeps the document from passing validation.

7
New cards

Validator Warning

A message flagging something technically allowed but likely a mistake—such as a content-bearing image with an empty alt attribute—which does not block a passing result like an error does.

8
New cards

A semantic element representing one self-contained piece of content that makes sense on its own, syndicated elsewhere, and detached from the rest of the page.

9
New cards

A semantic element representing a distinct sub-topic within an article or page, ideally introduced by its own heading.

10
New cards

A semantic element representing content related to, but not central to, the main content—acting as a tangent rather than the primary point.

11
New cards
and

Semantic elements used together to pair an image with a genuine structural caption rather than relying on an unlinked nearby paragraph.

12
New cards

WCAG 2.2

Web Content Accessibility Guidelines 2.2; the W3C accessibility standard that evaluates whether assistive technology can identify page landmarks and navigate directly between them.

13
New cards

Nesting Order Rule

The XHTML rule requiring elements to close in the exact reverse order in which they were opened, preventing tags from crossing each other like an 'X'.

<p>The XHTML rule requiring elements to close in the exact reverse order in which they were opened, preventing tags from crossing each other like an 'X'.</p>
14
New cards

Duplicate id Value Error

A validator error occurring when the same id attribute value is assigned to more than one element in the same document, violating the rule that ids must be unique.

15
New cards

Element Not Allowed as Child Error

A structural validator error that occurs when an element is placed inside a parent element that prohibits it, such as placing a

tag directly inside a

    instead of inside an
  • .