×
×
Correct!
Change the list's item marker to an image called 'bling.jpg':
<style>
ul {
list-style-image: url("bling.jpg");
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<style>
ul {
list-style-image: url('bling.jpg');
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
<style>
ul {
list-style-image: url(bling.jpg);
}
</style>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
</body>
Not CorrectClick here to try again. Correct!<style> ul {: ; } </style> <body> <ul> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> </body> |