Skip to main content

hi subscribe button


Comments

Popular posts from this blog

Create DropDown Menu Using HTML,JavaScript and CSS

Here Simple code  Using for DropDown Button.  Copy all the code in NOTEPAD then Save it with   . . (dot)HTML extension .  Example : testmenu.html, projectmenu.html,  and Run it on your Browser. <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .dropbtn {     background-color: #3498DB;     color: white;     padding: 16px;     font-size: 16px;     border: none;     cursor: pointer; } .dropbtn:hover, .dropbtn:focus {     background-color: #2980B9; } .dropdown {     position: relative;     display: inline-block; } .dropdown-content {     display: none;     position: absolute;     background-color: #f1f1f1;     min-width: 160px;     overflow: auto;     box-shadow: 0px 8px 16px 0px r...