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’
Answers
Answered by
260
Answer:
<HTML>
<HEAD>
<TITLE>My Cities</TITLE>
</HEAD>
<BODY BGCOLOR="YELLOW">
<UL TYPE="SQURE">
<LI>DELHI
<LI>MUMBAI
</UL>
</BODY>
</HTML>
Explanation:
here's your answer...
mark as brainliest if it helped...
Answered by
28
Answer:
<!DOCTYPE html>
<html>
<head>
<title>My Cities</title>
</head>
<body bgcolor="yellow">
<ul style="list-style-type:square">
<li>DELHI</li>
<li>MUMBAI</li>
</ul>
</body>
</html>
This HTML code will show the required output.
ul => Unordered List
HTML => Hyper Text Markup Language
Similar questions
Biology,
7 months ago
Math,
7 months ago
English,
7 months ago
Math,
1 year ago
Science,
1 year ago
Psychology,
1 year ago
Social Sciences,
1 year ago