<html>
<head>
<title>Drop Down Menu</title>
<style>
/* main menu css */
ul li{
list-style: none;
float:left;
margin-left:10px;
}
ul li a{
text-decoration: none;
color:red;
}
/* drop down css */
ul li ul{
visibility: hidden;
}
ul li:hover ul{
visibility:visible;
}
</style>
</head>
<body>
<ul>
<li><a href = "">Home</a></li>
<li>
<a href = "">About</a>
<ul>
<li><a href = "">About Us</a></li>
<li><a href = "">About Company</a></li>
</ul>
</li>
<li>
<a href = "">Services</a>
<ul>
<li><a href = "">Services 1</a></li>
<li><a href = "">Services 2</a></li>
</ul>
</li>
<ul>
</body>
</html>
Choose the right course and start building your future with practical skills.
Learn HTML, CSS, JavaScript, and PHP to build modern, responsive websites and real-world projects.
Enroll Now See Full Details
Understand electronics basics with hands-on breadboard projects and circuit building techniques.
Enroll Now See Full Details
Step into AI with real-world applications, automation tools, and smart development techniques.
Enroll Now See Full Details