DEVFYI - Developer Resource - FYI

Every attribute must have a value

XHTML Interview Questions and Answers


(Continued from previous question...)

25. Every attribute must have a value

<ol compact>
<input type="radio" name="title" value="decline" checked>decline</input>

becomes
<ol compact="compact" >
<input type="radio" name="title" value="decline" checked="checked">decline</input>

(Continued on next question...)

Other Interview Questions