Advertisement
vvccs

wt_2_addcss

Oct 13th, 2024 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Login</title>
  7.     <style>
  8.         body {
  9.             font-family: Arial, sans-serif;
  10.             margin: 0;
  11.             padding: 0;
  12.             background-color: #f4f4f4;
  13.             display: flex;
  14.             justify-content: center;
  15.             align-items: center;
  16.             height: 100vh;
  17.         }
  18.         form {
  19.             background-color: #ffffff;
  20.             padding: 30px;
  21.             border-radius: 10px;
  22.             box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  23.             width: 100%;
  24.             max-width: 400px;
  25.         }
  26.         h1 {
  27.             text-align: center;
  28.             color: #333;
  29.             margin-bottom: 20px;
  30.         }
  31.         input {
  32.             width: 100%;
  33.             padding: 12px;
  34.             margin-bottom: 15px;
  35.             border: 1px solid #ddd;
  36.             border-radius: 5px;
  37.         }
  38.         button {
  39.             width: 100%;
  40.             padding: 12px;
  41.             background-color: #4CAF50;
  42.             color: white;
  43.             border: none;
  44.             border-radius: 5px;
  45.             cursor: pointer;
  46.             font-size: 16px;
  47.         }
  48.         button:hover {
  49.             background-color: #45a049;
  50.         }
  51.         p {
  52.             text-align: center;
  53.             font-size: 14px;
  54.         }
  55.         a {
  56.             color: #4CAF50;
  57.             text-decoration: none;
  58.         }
  59.     </style>
  60. </head>
  61. <body>
  62.     <form action="#" method="post">
  63.         <h1>Login</h1>
  64.         <input type="email" name="email" placeholder="Email" required>
  65.         <input type="password" name="password" placeholder="Password" required>
  66.         <button type="submit">Login</button>
  67.         <p>Don't have an account? <a href="registration.html">Register here</a></p>
  68.     </form>
  69. </body>
  70. </html>
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement