Create a web page defining your interests by using the Ordered and Unordered list as follows a. Title of the page should be "My Favourite Things". b. Background colour of the page should be light blue and text colour dark blue. c. Font "News Gothic MT and size 6. d. Add the bullet points one after another. i. My Favourite Hobby + Gardening + Reading + Trekking ii. My Favourite Car + Honda City • Innova + Mercedes iii. My Favourite Food + Chinese + Indian + Mongolian
Answers
<!DOCTYPE>
<html>
<title>My Favourite Things</title>
<body bgcolor= "lightblue" text = "darkblue">
<font face ="NewsGothicMT" size ="6">
<ol type = "1">
<li> My Favourite Hobby
<ul type = "disc">
<li> Gardening</li>
<li> Reading</li>
<li>Trekking </li> </ul>
<li> My Favourite Car
<ul type = "disc">
<li> Honda City</li>
<li> Innova</li>
<li>Mercedes</li> </ul>
<li> My Favourite Food
<ul type = "disc">
<li> Chinese</li>
<li> Indian</li>
<li>Mongolian</li> </ul>
</ol>
</body>
</html>
Explanation:
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE>CSSimplified.com HTML13</TITLE>
</HEAD>
<BODY bgColor="clay" Text="blue">
<P ALIGN="center"><FONT SIZE="5"><B>CSSimplified.com examples..</B></FONT></P>
<P ALIGN="center"><FONT FACE="verdana" SIZE="5"><B>Friends List</B></FONT></P>
<OL>
<LI>Prachi</LI>
<LI>Rohan</LI>
<LI>Chirag</LI>
<LI>Kunal</LI>
<LI>Milin</LI>
</OL>
</BODY>
</HTML>