Write HTML code to display your personal information, educational information and area of interest by using various tags
Answers
Answer:
execute it
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:
<Input type="text" Name="Name" Size=15 Maxlength=15>
<br>
Gender:
<Input type="radio" Name="Gender"> M <Input type="radio" Name="Gender"> F
<br>
Password:
<Input type="Password" Name="Password">
<br>
Address:<br>
<Textarea Name="Address" Rows="5" Cols="15"></Textarea>
<br>
Fields of Interest:<br>
<Input type="checkbox" Name="Browsing"> Browsing <Input type="checkbox" Name="Reading"> Reading<br><Input type="checkbox" name="Gaming"> Gaming <Input type="checkbox" Name="Trekking"> Trekking<br>
<center><Input type="Submit" Name="Submit" value="Submit"> <Input type="Reset" Name="Reset" value="Reset"></Center></form>
</body>
</html>
Sorry dear don't know