الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <!-- CSS بواسطة كود <header> هنا قمنا بتحديد خصائص ظهور الوسم --> <style> header { background: #d4d4d4; padding: 10px; } header h1 { color: #fc5451; } header p { color: #333; } </style> </head> <body> <header> <h1>HTML Basics</h1> <p>By Mhamad Harmush - 3 hours ago</p> </header> <article> <p>We use HTML (Hypertext Markup Language) to structure a web page and its content such as paragraphs, list of bulleted points, or using images and data tables.</p> <p>As the title suggests, this article will give you a basic understanding of HTML and its functions.</p> </article> </body> </html>