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 <!DOCTYPE html> <html... Read more

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... Read more

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... Read more

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, ... Read more

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... Read more

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. Source Code : <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style... Read more

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... Read more

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 roommates... Read more

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 { from,... Read more

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 { background:#000; width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content:... Read more

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... Read more

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 instantly upon user interaction... Read more

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 src="https://kit.fontawesome.com/a062562745.js" crossorigin="anonymous"></script> <title>MP3 Player</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>... Read more

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... Read more

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... Read more