Skip to main content

Posts

Showing posts with the label Dark

GLASS EFFECTS HOVER BUTTONS

GLASS EFFECT HOVER BUTTONS  Hey Folks ✋! Today I'am going to show you how you can build " Beautiful Glass Effect Hover Button " But first of all you must know what is " Hover-Effect ". HOVER: Applies to any element being hovered by the user's pointing device, but not activated. There are three pseudo-classes that allow you to change the appearance of elements when a user is interacting with them. HOVER ACTIVE FOCUS but we focus only hover today and clear our concept 😃😊. WHEN WE APPLIED HOVER ? This is applied when a user hovers over an element with a pointing device such as a mouse.  This has commonly been used to change the appearance of links and buttons when a user  places their cursor over them. It is worth noting that such events do not work on devices that use touch screens (such as the iPad) because the screen is not able to tell when someone is hovering their finger over an element. EXAMPLE OUTPUT SOURCE CODE HTML: <!DOCTYPE   html > <htm...

Best Ui Dark Calculator using Html,Css and Javascript

   How to Create a  Calculator  Introduction Calculator is one of the basic projects of JavaScript or any other languages a newbie programmer should probably know how to create it.The best thing of this is that the coding is short and easy to understand . It is a basic project that perform arithmetical operations. All you have to do is to create a button for each number, arithmetic operations. symbols and then add a text-box or input-field. Here is the Output of Dark Calculator : Output: Source Code : Index.html: Here is the html coding :) <!DOCTYPE html> <html  lang =" en "> <head> <meta  charset =" UTF-8 "> <meta  name =" viewport "  content =" width=device-width, initial-scale=1.0 "> <title> Dark Calculator </title> <link  rel =" stylesheet "  href =" styel.css "> </head> <body> <div  class =" main "> <div> <input  id =" result ...