DEV Community

Cover image for Glassmorphism Website Design in HTML and CSS
codinglabweb
codinglabweb

Posted on • Updated on

Glassmorphism Website Design in HTML and CSS

Q: How can I create a Glassmorphism website using HTML and CSS?
A: After reading and watching the following article and video tutorial, you will definitely able to create glassmorphism website by using HTML and CSS.

Hello Readers, today in this blog I will create a responsive website with the help of HTML & CSS and this website looks will be in glass morphism UI. Earlier I have shared How to Create a Simple Website using HTML & CSS now it's time to create glassmorphism website.

What is Glassmorphism?
Glassmorphism is the latest trend on UI designs in where UI Designs' background is a blur and we can see what is in the background. Basically, Glassmorphism is the combination of two words "Glass" and "Morphism". That why glassmorphism design looks neither transparent nor solid. Codes for the glassmorphism design.

background: rgba(255, 255, 255, 0.1);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
border-top: 1px solid rgba(255, 255, 255, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.5);
backdrop-filter: blur(5px);

As you can see on the given image of this program [Glassmorphism Website Design], on the web page. On the top side, there is on navbar with some logos, hyperlinks, and two-button. Under the navigation menu, there is some text and at the bottom right side, there is one play button and some text. You can see in the outer top left corner and right bottom corner, there are two circles that give more attraction.

Glassmorphism Website Design | Source Code
You can download all source code from the given link. Click Here To Download All Source Code

Top comments (0)