Problem styling ul tag
i'm trying to style a ul tag to make a navigation bar and i cant seem to be able to remove the bullet points with my CSS file, I can only remove them by styling the ul inline or in the same .php file in the <style></style> tags. tried styling it by adding a class and an ID and neither seem to be working. The problem isn't referencing the css file because the same css file is used to style buttons and other elements in the .php file.
here's my code:
PHP:
<body>
.
.
<ul class="navbar">
<li> <a href= "homepage.php">Home</a></li>
</ul>
.
.
</body>
CSS:
ul.navbar {
display: inline;
list-style-type: none;
padding: 0;
margin: 0;
}
