Category Archives: HTML

Responsive Navigation Menu Using Only CSS

Hi all, Responsive menus are built to work with desktop browsers as well as touch and mobile devices. In here the dropdown menu also available in all device using pure CSS. A pure CSS responsive menu created that automatically changes to a toggleable dropdown menu at a specified breakpoint based on CSS3 media queries. If… Read More »

Drag and Drop Concept – Jquery

Hi all, Here I’m going to show you, how to implement drag and drop functionality using jquery. This drag and drop method mostly used for designing purpose.Drag the image from div and drop to specified div after successfully droped the success message box display otherwise fail alert box display. Here I just used a simple… Read More »

Live html compiler – PHP

Live HTML compiler using PHP is very simple one like as w3schools editor. In here we are going to run the textarea code in the iframe.Main difference from w3schools try editor,the w3schools try editor used asp.net but, here PHP with iframe is used.Visitors are need to edit their code for their own need, and they… Read More »

Rounded Image with CSS Shadows

Hi friends, This article shows “Rounded Image with CSS Shadows”. Any rectangular image into a circular one with drop shadows and borders without editing the original images. In here, simple replace the background-image URL in the DIV with your own image. Perfect for display the author photos in your blog’s sidebar,display team members, testimonial etc.… Read More »

How to make Blinking the text/button/div in html5 and Javascript

The blinker() function helps to blink text/div/button etc.. Set the fadein and fadeout time in blinker(). Also set the timeinterval. Blinking code <button class=”blink_me” >This will blink </button> <script src=”http://code.jquery.com/jquery-1.9.1.js”></script> <script> function blinker() { $(‘.blink_me’).fadeOut(500); $(‘.blink_me’).fadeIn(500); } setInterval(blinker,1000); </script>

CSS Button Style

Hi all, Here i share related to CSS button style. CSS helps different style and effect on HTML button.Create nice buttons that work purely using CSS, and that are cross-browser compatible. That means that they do not use images at all, and they should format nicely in almost any browser.Below I have given some button… Read More »

Center Image in div with overflow hidden

Here’s a simple CSS in HTML solution to have fullscreen backgrounds vertical and horizzontal centering respective image, image overflow hidden.Here you can center the image horizontally by adding a negative margin and left portion. If you want to you can also center the image vertically by adding a negative margin and top portion. CODE