Cool HTML Codes are the foundation of nearly every website on the web. This page contains html animation codes, image codes, marquee codes, text effects, background codes, and some other neat effects, as well as an introduction to HTML. These are all really easy to copy and paste directly into your blog, website, forum, etc. HTML codes are the language a browser uses to display a website. It...
What is Gradients? Gradients displays the combination of two or more colors as shown below − Types of gradients Linear Gradients(down/up/left/right/diagonally) Radial Gradients Linear gradients Linear gradients are used to arrange two or more colors in linear formats like top to bottom Top to bottom <html> <head> <style> #grad1 { height: 100px; background: -webkit-linear-gradient(pink,green); background: -o-linear-gradient(pink,green); background: -moz-linear-gradient(pink,green); background: linear-gradient(pink,green); } </style> </head>...