A
Anonymous
Birthday Card - Copy this React, Tailwind Component to your project
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF 8"> <title>Happy Birthday Sister</title> <style> body { margin: 0; padding: 0; font family: 'Segoe UI', sans serif; background: linear gradient(135deg, #fceabb, #f8b500); color: #fff; text align: center; display: flex; align items: center; justify content: center; height: 100vh; } .card { background: rgba(255, 255, 255, 0.1); padding: 40px; border radius: 20px; backdrop filter: blur(10px); box shadow: 0 10px 20px rgba(0, 0, 0, 0.2); max width: 400px; } h1 { font size: 2em; margin bottom: 10px; } p { font size: 1.1em; line height: 1.5; } </
Prompt
