Posts

Showing posts from February, 2025

Welcome

<!DOCTYPE html> <html lang="en"> <head>     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Credit/Debit Card </title>      </head> <body>         <style>                body {     font-family: Arial, sans-serif;     background-color: #f5f5f5;     display: flex;     justify-content: center;     align-items: center;     height: 100vh; } .card-form {     background-color: #fff;     padding: 20px;     border-radius: 10px;     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);     width: 400px; } h2 {     text-align: center;     margin-bottom: 20px; } .input-group {     margin-bottom: 15px; } label {     display: block;     font-size: 14px;     marg...