INDEX.HTML File
<html>
<head>
<title>Design a Menu For Website</title>
<link rel="stylesheet" href = "style.css">
</head>
<body>
<ul>
<li><a href = "">Home</a></li>
<li><a href = "">About</a></li>
<li>
<a href = "">Services</a>
<ul>
<li><a href ="">Web Developing</a></li>
<li><a href = "">Web Designing</a></li>
<li><a href = "">Php Development</a></li>
</ul>
</li>
</ul>
</body>
</html>
STYLE.CSS File
/* primary menu css*/
ul li{
list-style:none;
float:left;
margin-left:10px;
}
ul li a{
text-decoration :none;
background-color:red;
color:white;
padding:7px;
}
/* dropdown menu css*/
ul li ul{
visibility: hidden;
display:grid;
}
ul li:hover ul{
visibility: visible;
}
ul li ul li{
margin-top:20px;
}
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