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

今天有一个人过生日,请使用html为他搭建一个视觉网站

<!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>Happy Birthday!</title> <style> body { font-family: Arial, sans-serif; text-align: center; } .container { margin: 50px auto; padding: 20px; max-width: 600px; background-color: #f9f9f9; border: 1px solid #ccc; border-radius: 10px; } h1 { color: #333; } p { color: #666; } img { max-width: 100%; border-radius: 10px; } </style> </head> <body> <div class="container"> <h1>Happy Birthday!</h1> <p>Today is a special day because it's your birthday!</p> <img src="birthday-cake.jpg" alt="Birthday Cake"> <p>Wishing you all the happiness and joy on your special day!</p> </div> </body> </html> [2024-08-27 08:39:38 | AI写代码神器 | 549点数解答]

相关提问