Posts

Showing posts from December, 2021

Admin Login Page Using HTML and CSS

Image
 Admin Login Page Using HTML and CSS HTML CODE <!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> Document </title>     <link rel = "stylesheet" href = "style.css" > </head> <body>     <div class = "container" >         <div class = "login_form" >             <form action = "" method = "post" >                 <h2> Admin Login </h2>                 <input type = "text" >                 <input type = "password" >              ...