Category: Web Development Tutorials

Web Development Tutorials

Image Filters In HTML CSSImage Filters In HTML CSS

Image Filters In HTML CSS Image Filters In HTML CSS in Delhi HTML Code <img src=”sanjay-jain.jpg” alt=”” width=”300″ height=”300″> <img class=”blur” src=”sanjay-jain.jpg” alt=”” width=”300″ height=”300″> <img class=”brightness” src=”sanjay-jain.jpg” alt=”” width=”300″ height=”300″> <img class=”contrast” src=”sanjay-jain.jpg” alt=”” width=”300″ height=”300″> <img class=”grayscale” src=”sanjay-jain.jpg” alt=”sanjay-jain” width=”300″ height=”300″> <img class=”grayscale” src=”sanjay-jain.jpg” alt=”sanjay-jain” width=”300″ height=”300″> <img class=”invert” src=”sanjay-jain.jpg” alt=”sanjay-jain” width=”300″ height=”300″> […]

Multiple Backgrounds in HTML CSSMultiple Backgrounds in HTML CSS

Multiple Backgrounds in HTML CSS HTML Code <div class=”s1″></div>   CSS Code .s1{width:1000px; height:500px; background-color:yellow; background-image:url(logo.png), url(logo.png), url(logo.png), url(logo.png), url(logo.png); background-repeat:no-repeat, no-repeat, no-repeat, no-repeat, no-repeat; background-position:bottom left, bottom right, center center, top left, top right; }

Pure HTML CSS Multi Level Animated Drop Down MenuPure HTML CSS Multi Level Animated Drop Down Menu

Pure HTML CSS Multi Level Animated Drop Down Menu HTML Code of This Menu <!doctype html> <html> <head> <meta charset=”utf-8″> <title>Untitled Document</title> <link href=”menu.css” rel=”stylesheet”> </head> <body> <!– menu start –> <ul> <li>Home <div class=”a1″> <ul> <li>Item 1 <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> </ul> </li> <li>Item 2</li> <li>Item 3</li> <li>Item 4 […]