1.

Write HTML code to display the unordered list (with square bullets) of two cities “DELHI” and “MUMBAI”. The web page should have a yellow background and the title of the page should be ‘My Cities’ 

Answer»

<HTML>

<HEAD> 

<TITLE> My Cities</TITLE> 

</HEAD> 

<BODY bgcolor=”yellow”> 

<UL type=”square”> 

<LI> DELHI </LI> 

<LI> MUMBAI </LI> 

</UL> 

</BODY> 

</HTML>



Discussion

No Comment Found

Related InterviewSolutions