Lists | HTML: Lists are presenting the items with or without order. Lists: 1. Ordered List 2. Unordered List Here is the list.html: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <title>Lists in Html</title> </head> <body> <h3>Here is the details of lists in Html</h3> <!-- Ordered Lists --> <ol type="1"> <li>a</li> <li>b</li> <li><img src="images/park.jpg" alt="park"></li> </ol> <!-- Unordered Lists --> <ul style="list-style-type:none" > <li>1</li> <li>2</li> <li><a href="https://www.who.int/">WHO</a></li...