Write a HTML program in which – • Title should be “Trip” . • Background colour should be blue. • You will create a list in which circle should be displayed in front of the following list Mussoorie ,Jaipur ,Agra Manali.
Answers
Answered by
2
Answer:
<html>
<head>
<title>Trip</title>
</head>
<body bgcolor="blue">
<ul type="circle">
<li>Mussoorie</li>
<li>Jaipur</li>
<li>Agra</li>
<li>Manali</li>
</ul>
</body>
</html>
.
.
PLEASE MARK IT AS BRAINLIEST!!!!!
Similar questions