Advertisements
Advertisements
प्रश्न
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 -->
Based on the above code fill in the blanks given in line 1, line 2, line 3, and line 4 so that Hemant’s webpage displays output correctly?
कोड लेखन
रिक्त स्थान भरें
उत्तर
<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 -->
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?