Waving Hand Animation using CSS
Creating a waving hand animation using CSS involves using keyframe animations. We have provided a complete working code snippet for creating waving hand animation using CSS. Follow the following video for complete guidance : Complete Source Code…
Image Grayscale and Zoom effect on hover using CSS
Images, graphics and videos are an integral part of web presentation in recent times. Users are always attracted to visual presentations as compared to text contents. In this article, we are going to create a hover effect on image to make our webpage…
Flying Plane Animation using HTML and CSS
In this tutorial, we are going to learn to create a flying plane animation using simple HTML and CSS. We will use “animation” CSS property to move the plane in sky background. We need two images for the sky and for the plane. Here are the two…
Rotating Border Animation using CSS
In this tutorial, we are going to create a rotating border animation using CSS. In the following example, we have set a rotating border to a an image element using CSS animation property. We have used position property, ::before selector, animation…
Design progress bar using CSS and JavaScript
A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer or installation. A progress bar can be used to show how far along a user is in a process. Follow this…
Navigation Bar Using HTML & CSS | HTML & CSS Tutorial
In this video, we are going to create a simple Navigation Bar using HTML and CSS. Also we will make the navigation bar fixed at the top of the webpage. https://www.youtube.com/watch?v=obD48HjV81w Source Code : <html> <head> <meta…
OnlineKart – Free Responsive Single Page Product Showcase Website Template
OnlineKart Shop is a free HTML template designed especially for showcasing list of products for sale in the webpage. Your users will have a better experience regardless of the device they are using to view the page. It is a very lightweight with just…
Facebook Style Login Page Design using HTML and CSS
Facebook is an American online social media and social networking service based in Menlo Park, California, and a flagship service of the namesake company Facebook, Inc. It was founded by Mark Zuckerberg, along with fellow Harvard College students and…
Rotating 3D Cube effect using HTML and CSS
In this article, we are going to learn to make 3D Cube using HTML and CSS and then rotate it using css transform property. Full Source Code : <html> <head> <style type="text/css"> .stage{ margin:0 auto; } @-webkit-keyframes spincube {…
Notebook design using HTML & CSS
The following source code provides few lines of HTML and CSS which creates a simple yet pretty looks of a notepad. Source Code : <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Shadows+Into+Light'> <style> body {…
Create Marquee in webpage using CSS
Marquee is an animation effect for web pages used to create horizontal or vertical scrolling text and images. The <marquee> element of HTML is not a standard-compliant, ie the element is not part of the W3 HTML specifications. For creating a…
Skeleton Loading Screen Animation using HTML and CSS
Skeleton screens are blank pages that are progressively populated with content, such as text and images, as they become available (i.e. when network latency allows). Grey or neutral-toned filled shapes, commonly called placeholders, meet the user…
Create Custom Music Player using HTML, CSS and JavaScript
In this article, we are going to learn to develop a custom music player using HTML, CSS and JavsScript (preferably JQuery). Full Source Code : <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <script…
CSS : Rotate icon on Hover
In this article, we are going to rotate an icon on mouse hover using CSS transform. The transform property applies a 2D or 3D transformation to an element. This property allows you to rotate, scale, move, skew, etc., elements. DEMO Full Source Code :…
Design a Attractive Custom 404 Page
A 404 page is what a user sees when they try to reach a non-existent page on your site. Its not necessary that you always find the page you wanted to surf. Sometimes, users have to come across a content or page that is not available. In such case, the…