CSS Property of List tag in HTML
In this article, you will learn how to use CSS Property of List tag in HTML. Example:- list.html style.css<html>
<head>
<title>List Property</title>
<limk rel="stylesheet" href="style.css">>
</head>
<body>
<ul>
<li>Home</li>
<li>Anout</li>
<li>Gallery</li>
<li>Blog</li>
<li>Contact Us</li>
</ul>
</body>
</html>
…li{
display:inline;