酷代码 AI
菜单
全部AI  /  热门  /  AI写代码神器
服务商

请用html写出好看的扫码支付页面

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; } .container { max-width: 600px; margin: 0 auto; padding: 20px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } h1 { color: #333; } .qr-code { margin-top: 20px; } </style> <title>扫码支付</title> </head> <body> <div class="container"> <h1>扫码支付</h1> <p>请使用手机扫描下方二维码进行支付</p> <div class="qr-code"> <img src="qr-code.jpg" alt="扫码支付"> </div> </div> </body> </html> [2024-06-29 10:33:00 | AI写代码神器 | 512点数解答]

相关提问