please make a html program for the question.
Note : this page must include a different background or text colour and use proper HTML tags.
Um not being rude but I want correct answer no irrelevant answers or I'll report you this time .
Answers
Explanation:
<!DOCTYPE html>
<html>
<body style="background-color:powderblue;">
<form>
<label for="fname">Name:</label>
<input type="text" id="fname" name="fname><br>
<label for="age">age:</label>
<input type="number" id="age"
name="age" ><br>
<label for="Grade">Grade:</label>
<input type="number" id="grade"
name="grade" ><br>
<label for="Hobbies ">Hobbies :</label>
<input type="text" id="hobbies "
name="hobbies" ><br>
</form>
<h2 style="color:red;">After high school I would like to be :</h2>
<h2 style="color:pink;">My top 3 favourite TV shows are :</h2>
<ul>
<li>#</li>
<li>#</li>
<li>#</li>
</ul>
<h2 style="color:blue;">My top 3 favourite Movies are :</h2>
<ul>
<li>#</li>
<li>#</li>
<li>#</li>
</ul>
<h2 style="color:grey;">My top 3 favourite music artist
or bands are :</h2>
<ul>
<li>#</li>
<li>#</li>
<li>#</li>
</ul>
</body>
</html>