drop down menu for cryptocurrencies
<!doctype html>
<style>
.dropbtn {
background-color: black;
color: blue;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: red;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: green;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: blue;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: black}
.show {display:block;}
</style>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Cryptocurrencies</button>
<div id="myDropdown" class="dropdown-content">
<a href="https://cryptoforextricks.blogspot.co.ke/p/cryptocurrency-exchange-refers-to-as.html">Cryptocurrencies Exchanges</a><br />
<a href="https://cryptoforextricks.blogspot.co.ke/p/cryptocurrency-refers-to-as-digital-or.html">List of cryptocurrencies</a><br />
<a href="https://cryptoforextricks.blogspot.co.ke/p/bitcon-wallet-is-software-program-where.html">Cryptocurrencies Wallets</a><br /><a href="https://cryptoforextricks.blogspot.co.ke/p/hello-guys.html">Bitcoin Mining</a>
</div>
</div>
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
</!doctype>
<style>
.dropbtn {
background-color: black;
color: blue;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: red;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: green;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: blue;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: black}
.show {display:block;}
</style>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Cryptocurrencies</button>
<div id="myDropdown" class="dropdown-content">
<a href="https://cryptoforextricks.blogspot.co.ke/p/cryptocurrency-exchange-refers-to-as.html">Cryptocurrencies Exchanges</a><br />
<a href="https://cryptoforextricks.blogspot.co.ke/p/cryptocurrency-refers-to-as-digital-or.html">List of cryptocurrencies</a><br />
<a href="https://cryptoforextricks.blogspot.co.ke/p/bitcon-wallet-is-software-program-where.html">Cryptocurrencies Wallets</a><br /><a href="https://cryptoforextricks.blogspot.co.ke/p/hello-guys.html">Bitcoin Mining</a>
</div>
</div>
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
</!doctype>
Comments
Post a Comment