Computer Science, asked by payalpatel6204, 11 months ago

<lable> Use this tag? ​

Answers

Answered by yudhistiricaspa
0

Answer:

Explanation:

<html>

   <head>

       <title>Label Tag</title>

   </head>

     

   <body style = "text-align:center">

         

       <h1 style = "color:green">sample paper</h1>

       <h2>label tag</h2>

         

       <form>

             

         

           <label for = "student">

               Student

           </label>

           <input type = "radio" name = "Occupation"

           id = "student" value = "student"><br>

     

           <label for = "business">

               Business

           </label>

           <input type = "radio" name = "Occupation"

           id = "business" value = "business"><br>

     

           <label for = "other">

               Other

           </label>

           

             

           <input type = "radio" name = "Occupation"

           id = "other" value = "other">

       </form>

   </body>

</html>

Similar questions