الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <!-- CSS بواسطة كود <aside> هنا قمنا بتحديد خصائص ظهور الوسم --> <style> aside { float: right; max-width: 300px; background: #f1f1f1; border: 1px solid gray; padding: 10px; margin-bottom: 10px; } </style> </head> <body> <article> <h1>Becomming a Web designer</h1> <p>First thing, you have to study how to think like a programmer, so you have to study something called Algorithms. Then you should learn HTML, CSS, Javascript in the same order.</p> <aside>C++, python, java etc.. can be used in backend.</aside> <p>In general, you need about a year to study all the basics and to do some projects.</p> <p>After that, you can work as a freelancer or you can apply to any company wants a web designer.</p> </article> </body> </html>