• Home
  • About Us
  • Contact Us
  • Affiliate Disclosure
  • Disclaimer
  • Privacy & Terms
Viralfeed
ADVERTISEMENT
  • Home
  • NewsNews
  • Business
  • World Wide
  • Jobs & Vacancies
  • Science & Tech
  • Digital
    • Digital Marketing
    • Earn Money Online
    • Gadgets
    • Apps
    • Software
    • Websites
  • Entertainment
    • Gaming
    • OTT
    • Movie
    • Music
    • Sports
    • Celebrities
    • Jokes & Quotes
  • MoreAll
    • Finance
    • Biography
    • Automobile
    • GK Facts
    • Religious & Astro
    • Event, Festival & Holiday
    • Health & Fitness
    • Food & Recipe
    • Pet Care
    • Home & Garden
    • Lifestyle & Fashion
    • Travel
    • Success Story
    • Government Schemes
    • Arts & Crafts
    • Agriculture & Farming
    • Education & Career
    • Biography
    • Agriculture & Farming
    • Automobile
    • Finance
    • GK Facts
    • Religious & Astro
    • Success Story
    • Government Schemes
    • Health & Fitness
    • Food & Recipe
    • Home & Garden
    • Pet Care
    • Lifestyle & Fashion
    • Travel
    • Arts & Crafts
    • Education & Career
  • Best BuyShop
    • Products Reviews
    • Coupons & Offers
    • Deals of the dayHot
No Result
View All Result
  • Home
  • NewsNews
  • Business
  • World Wide
  • Jobs & Vacancies
  • Science & Tech
  • Digital
    • Digital Marketing
    • Earn Money Online
    • Gadgets
    • Apps
    • Software
    • Websites
  • Entertainment
    • Gaming
    • OTT
    • Movie
    • Music
    • Sports
    • Celebrities
    • Jokes & Quotes
  • MoreAll
    • Finance
    • Biography
    • Automobile
    • GK Facts
    • Religious & Astro
    • Event, Festival & Holiday
    • Health & Fitness
    • Food & Recipe
    • Pet Care
    • Home & Garden
    • Lifestyle & Fashion
    • Travel
    • Success Story
    • Government Schemes
    • Arts & Crafts
    • Agriculture & Farming
    • Education & Career
    • Biography
    • Agriculture & Farming
    • Automobile
    • Finance
    • GK Facts
    • Religious & Astro
    • Success Story
    • Government Schemes
    • Health & Fitness
    • Food & Recipe
    • Home & Garden
    • Pet Care
    • Lifestyle & Fashion
    • Travel
    • Arts & Crafts
    • Education & Career
  • Best BuyShop
    • Products Reviews
    • Coupons & Offers
    • Deals of the dayHot
No Result
View All Result
Viralfeed netkosh
No Result
View All Result
ADVERTISEMENT
ADVERTISEMENT
Home News Digital Marketing

How to create Login Page using HTML, CSS?

Creator P2 by Creator P2
December 5, 2024
in Digital Marketing
0
How to create Login Page using HTML, CSS?
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

How to create Login Page using HTML, CSS?

Here, we’ll tell you how to create a login page using “HTML, CSS?” You can easily create a login page using HTML, CSS in the following steps.

  • Step 1
    First open any code editor, then select a new file. And save it by placing its name login.html then press shift 1 key, you will have a syntax of html in front of you, then set the title in it as you want. Then take the class inside the div and name it dot form. Then take the h2 heading and save it by inserting the user login title in it, then open your file on the browser, the title of the login form will appear in front of you.
  • Step 2 
    Select the div again and give it a class and rename the class icon. Then go to the https://ionic.io/ionicons/v4 and copy its CDN link and paste it into the head section of your file, then you can easily use the icons of this website. After that you have to search the name of the icon by entering the name of the icon user and search. Then paste it into your icon’s div.
  • Step 3 
    Then select 2 inputs and set them with and heights as per your wish, then set the checkbox with remember me and forgot password below the input, then take a button and save it by naming it LOG IN.
				
					<!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>Login Form</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;1,100&family=Ubuntu:wght@300&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-color: rgb(54,54,71);
        }
        .form{
            width: 300px;
            height: 400px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
        }
        .form h2{
            margin-bottom: 20px;
            text-align: center;
            letter-spacing: 1px;
            color: rgb(21,91,124);
        }
        .form .icon{
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background-color: rgb(206, 206, 206);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
        }
        .form .icon ion-icon{
            font-size: 35px;
            color: rgb(70, 70, 70);
        }
        .form input{
            width: 100%;
            height: 35px;
            border: 0px;
            border-bottom: 1px solid rgb(168, 168, 168);
            outline: none;
            padding-left: 5px;
            font-size: 15px;
        }
        .form .first-input{
            margin-top: 30px;
        }
        .form .small-icon-1{
            position: relative;
            top: -30px;
            left: 92%;
            font-size: 20px;
            color: rgb(180,180,180);
        }
        .form .small-icon-2{
            position: relative;
            top: -30px;
            left: 92%;
            font-size: 20px;
            color: rgb(180,180,180);
        }
        .form .base{
            display: flex;
        }
        .form .base label{
            position: absolute;
            bottom: 36%;
            left: 554px;
            font-size: 12px;
        }
        .form .base label .checkbox{
            width: 13px;
            height: 13px;
        }
        .form .base a{
            position: absolute;
            bottom: 36%;
            left: 710px;
            font-size: 12px;
        }
        .form button{
            width: 100px;
            height: 30px;
            margin: 40px 0 0 75px;
            border: 0px;
            border-radius: 10px;
            transition: 0.5s;
            letter-spacing: 1px;
            font-weight: bold;
        }
        .form button:hover{
            background-color: rgb(21,91,124);
            color: rgb(219,219,219);
            transform: translateY(-10px);
        }
    </style>
</head>
<body>
    <div class="form">
        <h2>USER LOGIN</h2>
        <div class="icon">
            <ion-icon name="person"></ion-icon>
        </div>
        <input class="first-input" type="text" placeholder="Username">
        <span class="small-icon-1"><ion-icon name="person"></ion-icon></span>
        <input class="second-input" type="password" placeholder="Password">
        <span class="small-icon-2"><ion-icon name="lock"></ion-icon></span>
        <div class="base">
            <label>
                <input type="checkbox" class="checkbox">
                Remember me
            </label>
            <a href="#">Forgot Password</a>
        </div>
        <button>LOG IN</button>
    </div>
    <script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
</body>
</html>
				
			

इस आर्टिकल को हिंदी में पढ़ने के लिए यहाँ क्लिक करें...

ADVERTISEMENT

Get real time update about this post categories directly on your device, subscribe now.

Unsubscribe
ADVERTISEMENT
Previous Post

HTML, CSS का प्रयोग करके लॉगिन पेज कैसे बनाये ?

Next Post

क्या आप भी अपने स्मार्टफोन की बैटरी चार्ज करते करते हैं परेशान, तो बैटरी लाइफ बढ़ाने के लिए अपनाए ये आसान टिप्स |

Creator P2

Creator P2

Related Posts

Adsterra ने 2024 में शुभकामना संदेशों और पुरस्कारों का नेटवर्क शुरू किया
Digital Marketing

Adsterra ने 2024 में शुभकामना संदेशों और पुरस्कारों का नेटवर्क शुरू किया

December 7, 2024
What is graphic design and how to make a career in graphic designing.
Digital Marketing

What is graphic design and how to make a career in graphic designing.

December 5, 2024
ग्राफ़िक डिज़ाइन क्या होता है और ग्राफिक डिजाइनिंग में करियर कैसे बनायें।
Digital Marketing

ग्राफ़िक डिज़ाइन क्या होता है और ग्राफिक डिजाइनिंग में करियर कैसे बनायें।

December 5, 2024
Email set up in Gmail for your mobile
Digital Marketing

Email set up in Gmail for your mobile

December 5, 2024
मोबाइल के लिए जीमेल में ईमेल का सेट अप
Digital Marketing

मोबाइल के लिए जीमेल में ईमेल का सेट अप

December 5, 2024
How To Download YouTube Shorts Video? Learn the easy way here
Digital Marketing

How To Download YouTube Shorts Video? Learn the easy way here

December 5, 2024
YouTube Shorts Video कैसे डाउनलोड करें? जानिए यहाँ आसान तरीका।
Digital Marketing

YouTube Shorts Video कैसे डाउनलोड करें? जानिए यहाँ आसान तरीका।

December 5, 2024
What is WordPress and how to make a website on WordPress? complete information
Digital Marketing

What is WordPress and how to make a website on WordPress? complete information

December 5, 2024
full knowledge of photoshop tools
Digital Marketing

full knowledge of photoshop tools

December 5, 2024
Compatibility Testing In Software Testing
Digital Marketing

Compatibility Testing In Software Testing

December 5, 2024
Next Post
क्या आप भी अपने स्मार्टफोन की बैटरी चार्ज करते करते हैं परेशान, तो बैटरी लाइफ बढ़ाने के लिए अपनाए ये आसान टिप्स |

क्या आप भी अपने स्मार्टफोन की बैटरी चार्ज करते करते हैं परेशान, तो बैटरी लाइफ बढ़ाने के लिए अपनाए ये आसान टिप्स |

Stay Connected test

  • 23.9k Followers
  • 99 Subscribers
  • Trending
  • Comments
  • Latest
हेल्थ इंश्योरेंस: चुनते समय किन महत्वपूर्ण बिंदुओं पर ध्यान दें, जानें यहां

हेल्थ इंश्योरेंस: चुनते समय किन महत्वपूर्ण बिंदुओं पर ध्यान दें, जानें यहां

December 12, 2024
6.49 लाख की गाड़ी के सामने हुई Scorpio, Fortuner फेल, बिकें 17000 unit, आप भी जानिए इस गाड़ी के बारे में

6.49 लाख की गाड़ी के सामने हुई Scorpio, Fortuner फेल, बिकें 17000 unit, आप भी जानिए इस गाड़ी के बारे में

December 5, 2024
एलन मस्क की नेटवर्थ 348 बिलियन डॉलर के पार, फिर बने दुनिया के सबसे अमीर शख्स

एलन मस्क की नेटवर्थ 348 बिलियन डॉलर के पार, फिर बने दुनिया के सबसे अमीर शख्स

December 5, 2024
Gold Price: सोने की कीमत रिकॉर्ड हाई से सिर्फ 1850 रुपये दूर, आगे भाव बढ़ेंगे या घटेंगे-जानें

Gold Price: सोने की कीमत रिकॉर्ड हाई से सिर्फ 1850 रुपये दूर, आगे भाव बढ़ेंगे या घटेंगे-जानें

December 5, 2024
ओला इलेक्ट्रिक स्कूटर डीलरशिप सम्पूर्ण जानकारी  |

ओला इलेक्ट्रिक स्कूटर डीलरशिप सम्पूर्ण जानकारी |

Ola Electric Scooter Dealership Complete Details.

Ola Electric Scooter Dealership Complete Details.

Ola Electric Scooter

Ola Electric Scooter

Et tempore illo beatae debitis

Et tempore illo beatae debitis

amazon basics Type-C to Lightning Silicone Cable | 20W Fast Charging, 480Mbps Data Transfer Speed | Compatible With iPhone, iPad Air, Pro, Mini, iPad | 1 mtr (Purple)

amazon basics Type-C to Lightning Silicone Cable | 20W Fast Charging, 480Mbps Data Transfer Speed | Compatible With iPhone, iPad Air, Pro, Mini, iPad | 1 mtr (Purple)

September 12, 2025
Tecno POP 9 5G Aurora Cloud, 4GB+128GB| Segment’s 1st 48MP Sony AI Camera| Segment’s 1st with NFC | D6300 Processor | 4+ Year Lag Free Fluency |5000 mAh Battery |Dual Speaker |Without Charger

Tecno POP 9 5G Aurora Cloud, 4GB+128GB| Segment’s 1st 48MP Sony AI Camera| Segment’s 1st with NFC | D6300 Processor | 4+ Year Lag Free Fluency |5000 mAh Battery |Dual Speaker |Without Charger

September 12, 2025
Amazon Basics AAA Rechargeable 750 mAh Batteries | Ready-to-use | Pre-Charged Ni-MH Batteries (Pack of 2)

Amazon Basics AAA Rechargeable 750 mAh Batteries | Ready-to-use | Pre-Charged Ni-MH Batteries (Pack of 2)

September 12, 2025
कैसे एक तकनीकी ने 40 कुओं और 6 झीलों को पुनर्जीवित करने के लिए कॉर्पोरेट्स और समुदायों को एक साथ लाया

कैसे एक तकनीकी ने 40 कुओं और 6 झीलों को पुनर्जीवित करने के लिए कॉर्पोरेट्स और समुदायों को एक साथ लाया

September 12, 2025

Recent News

amazon basics Type-C to Lightning Silicone Cable | 20W Fast Charging, 480Mbps Data Transfer Speed | Compatible With iPhone, iPad Air, Pro, Mini, iPad | 1 mtr (Purple)

amazon basics Type-C to Lightning Silicone Cable | 20W Fast Charging, 480Mbps Data Transfer Speed | Compatible With iPhone, iPad Air, Pro, Mini, iPad | 1 mtr (Purple)

September 12, 2025
Tecno POP 9 5G Aurora Cloud, 4GB+128GB| Segment’s 1st 48MP Sony AI Camera| Segment’s 1st with NFC | D6300 Processor | 4+ Year Lag Free Fluency |5000 mAh Battery |Dual Speaker |Without Charger

Tecno POP 9 5G Aurora Cloud, 4GB+128GB| Segment’s 1st 48MP Sony AI Camera| Segment’s 1st with NFC | D6300 Processor | 4+ Year Lag Free Fluency |5000 mAh Battery |Dual Speaker |Without Charger

September 12, 2025
Amazon Basics AAA Rechargeable 750 mAh Batteries | Ready-to-use | Pre-Charged Ni-MH Batteries (Pack of 2)

Amazon Basics AAA Rechargeable 750 mAh Batteries | Ready-to-use | Pre-Charged Ni-MH Batteries (Pack of 2)

September 12, 2025
कैसे एक तकनीकी ने 40 कुओं और 6 झीलों को पुनर्जीवित करने के लिए कॉर्पोरेट्स और समुदायों को एक साथ लाया

कैसे एक तकनीकी ने 40 कुओं और 6 झीलों को पुनर्जीवित करने के लिए कॉर्पोरेट्स और समुदायों को एक साथ लाया

September 12, 2025
ADVERTISEMENT
Viralfeed.netkosh.com

Our mission is to keep you informed about the ever-evolving world of content creation, from social media strategies to the impact of emerging technologies like AI.

Follow Us

Browse by Category

  • Agriculture & Farming (7)
  • Apps (20)
  • Arts & Crafts (1)
  • Automobile (71)
  • Best Buy (535)
  • Biography (16)
  • Business (8)
  • Celebrities (4)
  • Coupons & Offers (536)
  • Deals of the day (537)
  • Digital (143)
  • Digital Marketing (63)
  • Earn Money Online (34)
  • Education & Career (17)
  • Entertainment (25)
  • Event, Festival & Holiday (1)
  • Finance (13)
  • Food & Recipe (36)
  • Gadgets (66)
  • Gaming (5)
  • GK Facts (78)
  • Government Schemes (16)
  • Health & Fitness (69)
  • Home & Garden (11)
  • Jobs & Vacancies (65)
  • Jokes & Quotes (53)
  • Lifestyle & Fashion (9)
  • Movie (6)
  • Music (4)
  • News (989)
  • OTT (4)
  • Products Reviews (920)
  • Religious & Astro (68)
  • Science & Tech (12)
  • Software (18)
  • Sports (16)
  • Success Story (191)
  • Travel (35)
  • Websites (4)
  • World Wide (7)

Recent News

amazon basics Type-C to Lightning Silicone Cable | 20W Fast Charging, 480Mbps Data Transfer Speed | Compatible With iPhone, iPad Air, Pro, Mini, iPad | 1 mtr (Purple)

amazon basics Type-C to Lightning Silicone Cable | 20W Fast Charging, 480Mbps Data Transfer Speed | Compatible With iPhone, iPad Air, Pro, Mini, iPad | 1 mtr (Purple)

September 12, 2025
Tecno POP 9 5G Aurora Cloud, 4GB+128GB| Segment’s 1st 48MP Sony AI Camera| Segment’s 1st with NFC | D6300 Processor | 4+ Year Lag Free Fluency |5000 mAh Battery |Dual Speaker |Without Charger

Tecno POP 9 5G Aurora Cloud, 4GB+128GB| Segment’s 1st 48MP Sony AI Camera| Segment’s 1st with NFC | D6300 Processor | 4+ Year Lag Free Fluency |5000 mAh Battery |Dual Speaker |Without Charger

September 12, 2025
  • Home
  • About Us
  • Contact Us
  • Affiliate Disclosure
  • Disclaimer
  • Privacy & Terms

Copyright © 2009-2024 Netkosh Services Pvt. Ltd. All rights reserved. Made with passion by netkosh

No Result
View All Result
  • Home
  • News
  • Business
  • World Wide
  • Jobs & Vacancies
  • Science & Tech
  • Digital
    • Digital Marketing
    • Earn Money Online
    • Gadgets
    • Apps
    • Software
    • Websites
  • Entertainment
    • Gaming
    • OTT
    • Movie
    • Music
    • Sports
    • Celebrities
    • Jokes & Quotes
  • More
    • Biography
    • Agriculture & Farming
    • Automobile
    • Finance
    • GK Facts
    • Religious & Astro
    • Success Story
    • Government Schemes
    • Health & Fitness
    • Food & Recipe
    • Home & Garden
    • Pet Care
    • Lifestyle & Fashion
    • Travel
    • Arts & Crafts
    • Education & Career
  • Best Buy
    • Products Reviews
    • Coupons & Offers
    • Deals of the day

Copyright © 2009-2024 Netkosh Services Pvt. Ltd. All rights reserved. Made with passion by netkosh