CSS List - CSS List Kısa Yazım

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<head>
<style>
ul {
    list-style: square inside url("/img/kedi.png");
}
</style>
</head>
<body>

<ul>
  <li>Çay</li>
  <li>Kahve</li>
  <li>Su</li>
</ul>

</body>
</html>