An Image as The List Item Marker in HTML and CSS
In this tutorial, we will learn the code of “An Image as The List Item Marker in HTML and CSS”.
Code of “An Image as The List Item Marker in HTML and CSS”
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <html> <head> <style> ul { border: 5px solid blue; } </style> </head> <body> <h1>An Image as The List Item Marker:</h1> <ul> <li>Tea</li> <li>Sandwich</li> <li>Coca-Cola</li> </ul> <br> <img src="logo.jpg"/> </body </html> |
The output of code of “An Image as The List Item Marker in HTML and CSS”
