0% found this document useful (0 votes)
11 views2 pages

R

Uploaded by

a22590
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

R

Uploaded by

a22590
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html>
<head>
<style>
.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}

.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>

<h2>Hoverable Dropdown</h2>
<p>Move the mouse over the text below to open the dropdown content.</p>

<div class="dropdown">
<button>Mouse over me</button>
<div class="dropdown-content">
<button>Hello World!</button>
</div>
</div>

</body>
</html>

+++++++++++++++++++++

<html>
<head>
<link rel="stylesheet" href="stylecss3.css">
</head>
<body>

<nav>
<div class="navbar">
<a href="Home.html" target="frame3">Home<span></span></a>
<div class="subnav">
<a href="Nike.html" target="frame3"> Nike <span></span></a>
<div class="subnav-content">
<a href="airforce.html" target="frame3">Air Force</a>
<a href="jordan.html" target="frame3">Jordan</a>
</div>
</div>
<a href="Adidas.html" target="frame3"> Adidas <span></span></a>
<a href="LouisVuitton.html" target="frame3"> Louis Vuitton <span></span></a>

</nav>
</body>
</html>

You might also like