الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> p::before { content: 'Read this: '; } </style> </head> <body> <h1>Insert text before content</h1> <p>We use the before selector to insert content before original content.</p> <p>You can customize the inserted content to make it look better.</p> </body> </html>