Search This Blog

CSS Set image In UL Tag Example

CSS Set image In UL Tag Example :
<!DOCTYPE html>
<html>
<head>
<title> kod4u </title>
<style type="text/css">
ul {
list-style-image: url('point.jpg');
}
</style>
</head>
<body>
<h1> Set image In UL Tag Example </h1>
<p> Here we replace bullet with image in our web pages </p>

<ul>
<li> Coffee </li>
<li> Tea </li>
<li> Coca Cola </li>
</ul>

</body>
</html>
OUTPUT
CSS Set image In UL Tag Example

No comments:

Post a Comment