🎴 Flashcard Mode
XHTML Quiz
Card1 / 10
Mastered0
Review0
QuestionClick to flip
What is the correct XHTML for an attribute and its value?
AnswerClick to flip back
A
width="80"
💡 Explanation:
XHTML requires all attribute names and values to be in lowercase, and attribute values must be quoted. The correct format is width="80" (all lowercase, quotes around value). Option B is correct. Options A and D use uppercase, and option C lacks quotes.