Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.

export default async function(req) { const words = [ "تتزوجني؟", "تحبني؟", "نكبر سوا؟", "نبني بيت العمر سوا؟", "احبك" ];

// الصفحة HTML مع أزرار const html = `

صفحة الكلمات body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; direction: rtl; background: #f5f5f5; } h1 { color: #333; margin: 40px 0; } button { padding: 10px 20px; font-size: 18px; margin: 10px; cursor: pointer; border: none; border-radius: 8px; background-color: #87ceeb; color: #fff; }

اضغطي الزر لرؤية الكلمات

كلمة 1 كلمة 2 كلمة 3 كلمة 4 كلمة 5
`;

return new Response(html, { headers: { "Content-Type": "text/html; charset=UTF-8" } }); }