@ -7,33 +7,32 @@
< title > Quiz App< / title >
< title > Quiz App< / title >
< / head >
< / head >
< body >
< body >
< div class = "quiz-container" id = "quiz" >
< main class = "quiz-container" id = "quiz" >
< div class = "quiz-header" >
< section class = "quiz-header" >
< h2 id = "question" > Question text< / h2 >
< h2 id = "question" aria-live = "polite" > Loading Question...< / h2 >
< form id = "quiz-form" >
< ul >
< ul >
< li >
< li >
< input type = "radio" name = "answer" id = "a" class = "answer" >
< input type = "radio" name = "answer" id = "a" class = "answer" value = "a" / >
< label for = "a" id = "a_text" > Question < / label >
< label for = "a" id = "a_text" > Option A < / label >
< / li >
< / li >
< li >
< li >
< input type = "radio" name = "answer" id = "b" class = "answer" >
< input type = "radio" name = "answer" id = "b" class = "answer" value = "b" / >
< label for = "b" id = "b_text" > Question < / label >
< label for = "b" id = "b_text" > Option B < / label >
< / li >
< / li >
< li >
< li >
< input type = "radio" name = "answer" id = "c" class = "answer" >
< input type = "radio" name = "answer" id = "c" class = "answer" value = "c" / >
< label for = "c" id = "c_text" > Question < / label >
< label for = "c" id = "c_text" > Option C < / label >
< / li >
< / li >
< li >
< li >
< input type = "radio" name = "answer" id = "d" class = "answer" >
< input type = "radio" name = "answer" id = "d" class = "answer" value = "d" / >
< label for = "d" id = "d_text" > Question < / label >
< label for = "d" id = "d_text" > Option D < / label >
< / li >
< / li >
< / ul >
< / ul >
< / div >
< button id = "submit" type = "submit" > Submit< / button >
< button id = "submit" > Submit< / button >
< / form >
< / div >
< / section >
< / main >
< script src = "script.js" > < / script >
< script src = "script.js" > < / script >
< / body >
< / body >
< / html >
< / html >