0 votes
43 views
in Computer Science by (8.5k points)
Hemant, a class X Student, is writing HTML code to create ordered and unordered lists for a webpage as follows:

<html>

<body bgcolor="yellow">

<h1>My First Heading <_____>          <!-- line 1 -->

<p>

<font color="red" size="5"

 ______="Times New Roman">        <!-- line 2 -->

SOME STATES IN INDIA

</p>

<ul>

<li>DELHI: <______>       <!-- line 3 -->

<li>MUMBAI </li>

<_____>                           <!-- line 4 -->

1 Answer

0 votes
by (56.5k points)
 
Best answer

<html>

<body bgcolor="yellow">

<h1>My First Heading </h1>          <!-- line 1 -->

<p>

<font color="red" size="5"

type="Times New Roman">          <!-- line 2 -->

SOME STATES IN INDIA

</p>

<ul>

<li>DELHI: </li>       <!-- line 3 -->

<li>MUMBAI </li>

</ul>                        <!-- line 4 -->

...