الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <!-- لم نضع أي شيء في هذا القسم --> </head> <body> <!-- هنا قمنا بعرض عنوان عريض في وسط الصفحة --> <center> <h2>HTML is easy to learn</h2> </center> <!-- هنا قمنا بعرض فقرة عادية --> <p>Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.</p> <!-- هنا قمنا بإضافة صورة --> <img src="/tutorials/html/basics/html-5-icon.PNG"> <!-- هنا قمنا بإضافة سطرين فارغين لإبعاد الصورة عما سنعرضه بعدها --> <br><br> <!-- هنا قمنا بعرض عنوان أصغر من العنوان الأول --> <h3>HTML usage</h3> <!-- هنا قمنا بعرض قائمة --> <ul> <li>It's the standard markup language for creating Web pages</li> <li>Describes the structure of a Web page</li> <li>Consists of a series of elements</li> <li>tells the browser how to display the content</li> </ul> </body> </html>