Code Below
.drop-content{
display:none;
}
.one:hover .drop-content{
display:block;
}
<div class="menu">
<h1> Drop-down menu</h1>
<p>this .html file is an example of a drop-menu.</p></div>
<span class="one">hover over here to see the drop</span>
<div class="drop-content">
<p>hello,there</p>
</div>
I am not getting the drop-menu, I have tried div class to but not getting the results, please help me out