Posts

Showing posts from September, 2022

How to make a simple login form using HTML

Image
 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Login Page</title> </head> <style>     * {         padding: 0;         margin: 0;     }     body {         background: rgb(43, 49, 99);     }     .container {         display: flex;         flex-dierection: column;         justify-content: center;         align-items: center;         margin-top: 100px:     }     .heading {}     .heading h2 {         color: #c5c5c5;         margin-bottom: 60px;     }     .email {}     .email input {   ...