Computer Science, asked by archanapathak4000, 6 months ago

Write HTML code to display your personal information, educational information and area of interest by using various tags Class - 10

Answers

Answered by lostworldearth
31

Answer:

Here modify tag names accordingly

Explanation:

<html>

   <head>

       <title>Page Title</title>

       <style>

       h1{

          background-color:white;

          text-align:center;

          color:red;

       }

       </style>

   </head>

   <body bgcolor="yellow" color="red">

   <h1>Personal Information</h1>

   <hr width=100% color=red>

   <hr width=100% color=red>

   <form>

   Name:&nbsp;&nbsp;

   <Input type="text" Name="Name" Size=15 Maxlength=15>

   <br>

   Gender:&nbsp;&nbsp;

   <Input type="radio" Name="Gender">&nbsp;M&nbsp;&nbsp;<Input type="radio" Name="Gender">&nbsp;F

   Address:<br>

   <Textarea Name="Bio" Rows="5" Cols="15"></Textarea>

   <Textarea Name="Education" Rows="5" Cols="15"></Textarea>

   <br>

   Fields of Interest:<br>

   <Input type="checkbox" Name="Browsing">&nbsp;Browsing&nbsp;&nbsp;<Input type="checkbox" Name="Reading">&nbsp;Reading<br><Input type="checkbox" name="Gaming">&nbsp;Gaming&nbsp;&nbsp;<Input type="checkbox" Name="Trekking">&nbsp;Trekking<br>

   <center><Input type="Submit" Name="Submit" value="Submit">&nbsp;&nbsp;<Input type="Reset" Name="Reset" value="Reset"></Center></form>    

   </body>

</html>

Answered by janardhanmohanraj
4

Answer:

html program

Explanation:

html program

Similar questions