Computer Science, asked by CHUZI786, 5 months ago

HTML code for this thing

Attachments:

Answers

Answered by mandalkamal014
4

Answer:

<html>

 <head>

    <h1 align="center"> Fruit Survey</h1>

 </head>  

<body style="background-color: yellow">

<form>  

    <table align="center">  

          <tr>    

              <td>    

                  First Name:    

              </td>    

               <td>    

                  <input type=”text”>    

               </td>  

          </tr>

          <tr>      

              <td>        

                 Address:      

              </td>      

               <td>        

                  <input type=”text”>      

               </td>    

          </tr>

          <tr>      

              <td>        

                  Email Address:      

              </td>      

               <td>        

                  <input type=”text” email=””>      

               </td>    

          </tr>

          <tr>

            <td>

              Hopw many piece of fruits you eat everyday:

            </td>

            <td>

                 <input type="radio">

                 <label > 0</label><br>

                 <input type="radio" >

                 <label > 1</label><br>

                 <input type="radio" >

                 <label> 2</label><br>

                 <label> or more than 2</label><br><br>

            </td>

             

          </tr>

          <tr>

            <td>

              My favourite fruit:

            </td>

            <td>

              <li>Apple</li>

              <li>Banana</li>  

              <li>Orange</li>

              <li>Papaya</li>

          </tr>

          <tr>

            <td>

             Would you like a brochure?

             <input type="checkbox" name="">

            </td>

          </tr>

          <tr>

            <td align="center">

              <button>Submit</button>

            </td>

          </tr>

           

    </table>

</form>  

</body>

</html>

Explanation:

Hope it help you...

Similar questions