Write HTML Code to display the unordered list (with Disc bullets) of any four countries.
The web page should have a red background and the title of the page should be 'The
famous Countries'
Answers
Answered by
1
Every <li> element starts from a new line. The <ol> tag is used to create an ordered HTML list. This means that the HTML list will be numbered. The <ul> tag defines an unordered HTML list, meaning that the list will not be numbered.
hope it helps. tho it might not be what ur looking for. plz mark me as brainliest
Answered by
2
Explanation:
<!DOCTYPE html>
<html>
<head>
<title>The Famous Countries</title>
</head>
<body bgcolor= "red">
<h1>The Famous Countries</h1>
<ul style="list-style-type:disc">
<li>US</li>
<li>India</li>
<li>Australia</li>
<li>New Zealand</li>
<li>Japan</li>
</ul>
</body>
</html>
Similar questions