Computer Science, asked by mariyamfatima809, 11 months ago

write the HTML code to display MCQ questions by using nested list tags ​

Answers

Answered by Brainlyshchay
2

CODE:

<html>

 <head>

   <title>

     MCQ | Brainlyshchay

   </title>

 </head>

 <body>

   <h1 class="cntr">MCQ using HTML</h1>

   <hr>

   <ul>

     <li><h3>What is the full from of HTML ?</h3></li>

   <ol>

     <li>Hyper text markup language</li>

     <li>Hyper text make language</li>

     <li>Hyper text money language</li>

     <li>Hyper tension minimise language</li>

   </ol>

   </ul>

   <br><br>

   <ul>

     <li><h3>What is JS?</h3></li>

     <ol>

       <li>Styling script</li>

       <li>Java Script</li>

       <li>Mark up Language</li>

       <li>Server Side Script</li>

     </ol>

   </ul>

   <br><br>

   <ul>

     <li><h3>What is the full from of MCQ?</h3></li>

     <ol>

       <li>Multiple Chance Question</li>

       <li>Multiple Copy Question</li>

       <li>Multpile Choise Question</li>

       <li>Mulitple Cancel Question</li>

     </ol>

   </ul>

   <h4 class="credits">Made by nishchay | Brainlyshchay</h4>

   <h4 class="credits">©PRONOOB</h4>

 </body>

</html>

Attachments:
Similar questions