القوائم

محتويات الدرس

القوائم المرتبة | Ordered List

				
					    <ol>
        <li>Learn the basic syntax and concepts of the chosen language.</li>
        <li>Practice coding , even small programs.</li>
        <li>step1</li>
        <li>step2</li>
    </ol>
				
			

انواع القوائم المرتبة

				
					<ol type="1" reversed start="10"></ol>

type = "1,i,I,a,A"
start="4"
reversed 

        
        
				
			

القوائم الغير مرتبة | UnOrdered List

				
					    <ul>
      <li>Stay patient; programming can be challenging at times.</li>
      <li>Use online coding platforms and development environments.</li>
      <li>Step3</li>
    </ul>
				
			

الكود المستخدم فى الدرس

				
					<!DOCTYPE html>
<html>
  <body>
    <h1>How to Learn Programming</h1>

    <h2>Ordered List - Steps to Start Learning</h2>
    <ol type="1">
      <li>Learn the basic syntax and concepts of the chosen language.</li>
      <li>Practice coding , even small programs.</li>
      <li>step1</li>
      <li>step2</li>
    </ol>

    <h2>Unordered List - Tips for Success</h2>
    <!--
        this with orderd list
        type = "1,i,I,a,A"
        start="4"
        reversed 
    -->
    <ul>
      <li>Stay patient; programming can be challenging at times.</li>
      <li>Use online coding platforms and development environments.</li>
      <li>Step3</li>
    </ul>
  </body>
</html>

				
			

تقدر تشوف الفيديو