Search This Blog

CSS Navigation Bar Example

CSS Navigation Bar Example :
<!DOCTYPE html>
<html>
<head>
<title> kod4u </title>
<style type="text/css">
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<h1> Navigation Bar Example </h1>
<p> Here we use Navigation Bar with List Style Type property </p>
<ul>
<li><a href="#"> Home </a></li>
<li><a href="#"> News </a></li>
<li><a href="#"> Contact </a></li>
<li><a href="#"> About </a></li>
</ul>
</body>
</html>
OUTPUT
CSS Navigation Bar Example

No comments:

Post a Comment