Skip to content
September 29, 2023
  • India vs Sri Lanka, Asia Cup 2023 Final: India win the match with 10 wickets.
  • Avatar 2 The Way Of Water (2022) Movie Download in filmyzilla 480p 720p 1080p Full HD 2022 | Hindi Movie Download
  • Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami
  • Alauddin Khilji | भारत पर मंगोलों का हमला नाकाम करने वाला सुल्तान

Code with Nizami

I'm Web Developer

Newsletter
Random News
  • CSS Creatives
  • Entertainment
  • HTML
  • HTML&CSS
  • JavaScript
  • JavaScript
  • Others
  • PHP
  • Sports
  • Trending Post
  • Web Development Projects
  • Web Development Tutorials

Chief Editor

Saroj Mhr

Lorem ipsum is simply dummy text
  • Home
  • Web Development Projects
    • HTML&CSS
    • CSS Creatives
    • JavaScript
    • Others
  • Web Development Tutorials
    • HTML
    • CSS
    • JavaScript
  • Trending Post
    • Entertainment
    • Sports
    • Politics
    • Motivation
  • BLOGS
Youtube Live
  • Home
  • Web Development Projects
  • Claymorphism Login Page Design using HTML, CSS | Login Page

Highlight News

Sports
Trending Post
India vs Sri Lanka, Asia Cup 2023 Final: India win the match with 10 wickets.
Entertainment
Trending Post
Avatar 2 The Way Of Water (2022) Movie Download in filmyzilla 480p 720p 1080p Full HD 2022 | Hindi Movie Download
HTML&CSS
Web Development Projects
Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami
Entertainment
Trending Post
Alauddin Khilji | भारत पर मंगोलों का हमला नाकाम करने वाला सुल्तान
  • HTML&CSS
  • Web Development Projects

Claymorphism Login Page Design using HTML, CSS | Login Page

CodewithNizami2 years ago1 year ago013 mins
login page

Table of Contents

  • Claymorphism Login Form
  • Popular Articles.
    • Read the carefully steps given below.
    • 1.Step
    • 2.Step
    • 3.Step
  • Watch video related this article…

Claymorphism Login Form

Hey Friends! Today we are make a beautiful claymorphism login page design using html css only and i hope you like it. Here you can get my all videos source code this source code just phaste in your code editor and save it filename.html 

In this article, we will tell you how to make clamorfism login page, if you like this article of ours, then click on the video given below to watch the video related to this article and also subscribe to our channel.
So let’s know how to make climorphism login page using html css and javascript.

Popular Articles.

How to make portfolio website header with dark mode enabled and disabled using html, css and javascript?

How to create navbar using html, css for your website?

How to make neumorphism clock using html, css and javascipt?

How to make Tea Cup with Bapour Animation using css only?

How to Design Responsive Footer for any website using html, css ?

How to make user profile like a instagram using html, css?

How to design music player with animation using html, css?

Dear friends i hope you understand about html and css because it is create by html, css. So first lean the html, css from w3school. It is the best site for web developement because here you can run code on the live so that is the best for students. If you understand about html and css so you can read this article for make easily claymorphism login page. First read the carefully all steps give below because we will tell you step by step and i hope you like our article and copy all source code related this article and paste your code editor for make easily without create manually. 

Read the carefully steps given below.

1.Step

First of all, you have to download a code editor in which we can write our code, we are telling you the names of some code editors, Visual Studio Code, this is the most used and most people use it because some of its features are very Works easily in writing our code quickly and it has built-in tags and properties, with the help of which we make login page with our code very easy.

After this you have to take fonts and icons, in this article we have used ion icons and we have taken fonts from google, if you also want to take fonts and icons, then you can use through this link. 

Icons — ion-icons

Fonts — Fonts.Google

After this, you have to open the code editor and save it by selecting a new file and remember that while saving the file, you must write dot html because the browser has to explain it from html itself, without html we can not run any language That’s why it is very important for us to come to html then you can make login page.

2.Step

Now you have to do coding, your file has also been created, now time has come to do your coding, so before starting coding, you must know about html css because whatever code we will write, it is in html and css only. That’s why these languages ​​are very important to you, so let’s start coding now.

Press ctrl + 1 and see the shortcut feature of Visual Studio Code in front of you, using which makes our work easy and very quick, when you do ctrl + 1, then the complete syntax of html will open in front of you, using which we create a website We can create web applications, all the code that is written is written inside it, so it is very important for us to learn html if we want to become a web developer, then well then we know how login form design from further coding do.

3.Step

First of all you have to take div and give it a class and save it by keeping class name as container then you have to take form tag inside it you have to take h3 heading and save it by keeping title of form, after that you have to take div again and its The class name is to be named iconbox, then inside it you have to take the span tag and put a label in it, then take another div tag and save its class name by keeping the box, then take another div tag and save its class name by placing the icon. Then put the user icon inside it and then save it.

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Claymorphism Login Form</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Kanit&family=Poppins:wght@200&family=Righteous&family=Russo+One&family=Ubuntu+Mono&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2f363e;
}
.container{
    position: relative;
    width: 350px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2f363e;
    box-shadow: 25px 25px 75px rgba(0,0,0,0.25),
    10px 10px 70px rgba(0,0,0,0.25),
    inset 5px 5px 10px rgba(0,0,0,0.5),
    inset 5px 5px 20px rgba(255,255,255,0.2),
    inset -5px -5px 15px rgba(0,0,0,0.75);
    border-radius: 30px;
    padding: 50px;
}
.container form{
    position: relative;
    width: 100%;
}
.container form h3{
    color: #fff;
    font-weight: 600;
    font-size: 2em;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.inputBox{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.inputBox span{
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75em;
    border-left: 4px solid #fff;
    padding-left: 4px;
    line-height: 1em;
}
.inputBox .box{
    display: flex;
}
.inputBox .box .icon{
    position: relative;
    min-width: 40px;
    height: 40px;
    background-color: #ff2c74;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 1.15em;
    box-shadow: 5px 5px 7px rgba(0,0,0,0.25),
    inset 2px 2px 5px rgba(255,255,255,0.25),
    inset -3px -3px 5px rgba(0,0,0,0.5);
}
.inputBox .box input{
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 5px 5px 7px rgba(0,0,0,0.25),
    inset 2px 2px 5px rgba(255,255,255,0.25),
    inset -3px -3px 5px rgba(0,0,0,0.5);
}
label{
    color: #fff;
}
button{
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    background-color: #1f83f2;
    box-shadow: 5px 5px 7px rgba(0,0,0,0.25),
    inset 2px 2px 5px rgba(255,255,255,0.25),
    inset -3px -3px 5px rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 20px;
}
.forgot{
    margin: 10px 0 0 60px;
    font-size: 15px;
    color: #1f83f2;
}
    </style> 
</head>
<body>
    <div>
        <form>
            <h3>Log IN</h3>
            <div>
                <span>Username</span>
                <div>
                    <div><ion-icon name="person"></ion-icon></div>
                    <input type="text">
                </div>
            </div>
            <div>
                <span>Password</span>
                <div>
                    <div><ion-icon name="lock-closed"></ion-icon></div>
                    <input type="password">
                </div>
            </div>
            <label>
                <input type="checkbox"> Remember me
            </label>
            <button>Log In</button>
            <a href="#">Forgot Password</a>
        </form>
    </div>
    <script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
    <script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>

Watch video related this article…

Tagged: claymorphism login page css css full course css tutorials form validation html in hindi html tutorials login form design Login Page login page using html css ui design

Post navigation

Previous: How to make Portfolio Website using HTML, CSS And JavaScript | Portfolio Header with Dark Mode.
Next: How to make Snake Game using HTML, CSS and JavaScript ?

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Related News

Glasmorphism login form

Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami

CodewithNizami10 months ago10 months ago 0
upload images using php

How to upload images using php | Dynamic images uploading in php 2022.

CodewithNizami12 months ago12 months ago 0
web page print using javascript

Web Page Print Using Javascript | How to Print Web Page in Javascript?

CodewithNizami12 months ago12 months ago 0
product card using css

Product Card Using CSS | Card Design for e-commerce website | CodeWithNizami

CodewithNizami1 year ago1 year ago 0

Recent Posts

  • India vs Sri Lanka, Asia Cup 2023 Final: India win the match with 10 wickets.
  • Avatar 2 The Way Of Water (2022) Movie Download in filmyzilla 480p 720p 1080p Full HD 2022 | Hindi Movie Download
  • Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami
  • Alauddin Khilji | भारत पर मंगोलों का हमला नाकाम करने वाला सुल्तान
  • IND vs PAK: भारत के पाकिस्तान दौरे का फैसला गृह मंत्रालय करेगा, अनुराग ठाकुर बोले- खिलाड़ियों की सुरक्षा जरूरी है।
  • Neumorphism Calculator Using Jquery | Calculator Tutorial Step by Step 2022. 
  • How to upload images using php | Dynamic images uploading in php 2022.
  • Web Page Print Using Javascript | How to Print Web Page in Javascript?
  • Vikram Vedha Movie 2022: विक्रम वेधा फिल्म पर फैन का क्या रिएक्शन मिला और फैन कितने एक्सीटेंड थे देखने के लिए आइए जानते है।
  • T20 World Cup 2022 | रोहित शर्मा ने स्काई और कोहली की प्रशंसा की, हर्षल और भुवनेश्वर का समर्थन किया, लेकिन ‘डेथ बॉलिंग एक चिंता’ को स्वीकार किया, डीके बनाम पंत की बहस को सुलझाया

Categories

  • CSS Creatives
  • Entertainment
  • HTML
  • HTML&CSS
  • JavaScript
  • JavaScript
  • Others
  • PHP
  • Sports
  • Trending Post
  • Web Development Projects
  • Web Development Tutorials

Popular News

1

India vs Sri Lanka, Asia Cup 2023 Final: India win the match with 10 wickets.

  • Sports
  • Trending Post
2

Avatar 2 The Way Of Water (2022) Movie Download in filmyzilla 480p 720p 1080p Full HD 2022 | Hindi Movie Download

  • Entertainment
  • Trending Post
3

Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami

  • HTML&CSS
  • Web Development Projects
4

Alauddin Khilji | भारत पर मंगोलों का हमला नाकाम करने वाला सुल्तान

  • Entertainment
  • Trending Post
5

IND vs PAK: भारत के पाकिस्तान दौरे का फैसला गृह मंत्रालय करेगा, अनुराग ठाकुर बोले- खिलाड़ियों की सुरक्षा जरूरी है।

  • Trending Post
6

Neumorphism Calculator Using Jquery | Calculator Tutorial Step by Step 2022. 

  • JavaScript
  • Web Development Tutorials
7

How to upload images using php | Dynamic images uploading in php 2022.

  • PHP
  • Web Development Projects
8

Web Page Print Using Javascript | How to Print Web Page in Javascript?

  • JavaScript
  • Web Development Projects

Trending News

Sports
Trending Post
India vs Sri Lanka, Asia Cup 2023 Final: India win the match with 10 wickets. 01
2 weeks ago2 weeks ago
02
Entertainment
Trending Post
Avatar 2 The Way Of Water (2022) Movie Download in filmyzilla 480p 720p 1080p Full HD 2022 | Hindi Movie Download
03
HTML&CSS
Web Development Projects
Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami

Recent News

1

India vs Sri Lanka, Asia Cup 2023 Final: India win the match with 10 wickets.

  • Sports
  • Trending Post
2

Avatar 2 The Way Of Water (2022) Movie Download in filmyzilla 480p 720p 1080p Full HD 2022 | Hindi Movie Download

  • Entertainment
  • Trending Post
3

Glasmorphism Login Form Design Using CSS | UI Design | CodeWithNizami

  • HTML&CSS
  • Web Development Projects
4

Alauddin Khilji | भारत पर मंगोलों का हमला नाकाम करने वाला सुल्तान

  • Entertainment
  • Trending Post
5

IND vs PAK: भारत के पाकिस्तान दौरे का फैसला गृह मंत्रालय करेगा, अनुराग ठाकुर बोले- खिलाड़ियों की सुरक्षा जरूरी है।

  • Trending Post
6

Neumorphism Calculator Using Jquery | Calculator Tutorial Step by Step 2022. 

  • JavaScript
  • Web Development Tutorials
7

How to upload images using php | Dynamic images uploading in php 2022.

  • PHP
  • Web Development Projects
8

Web Page Print Using Javascript | How to Print Web Page in Javascript?

  • JavaScript
  • Web Development Projects
Copyright @ 2023 CodeWithNizami. Powered By BlazeThemes.
  • About Us
  • Privacy Policy
  • Disclaimer
  • Terms & Conditions
  • Contact Us