حل مشروع القوائم

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

كود المشروع

				
					<!DOCTYPE html>
<html>
  <body>
    <h1>My Favorite Things</h1>
    <h2>
      <mark> Ordered List - My Top 3 Favorite Foods </mark>
    </h2>
    <ol type="i">
      <li>Pizza</li>
      <li>Chocolate Cake</li>
      <li>Ice Cream</li>
    </ol>

    <h2>
      <mark> Unordered List - Things to Do on a Lazy Sunday </mark>
    </h2>
    <ul>
      <li>Read a book</li>
      <li>Watch a movie</li>
      <li>Go to Cinema</li>
    </ul>

    <h2>
      <mark> Ordered List - Creating a New Habit </mark>
    </h2>
    <ol type="a">
      <li>
        <i> Step 1: Identify Your Habit </i>
      </li>
      <li>
        <b> Step 2: Set a Clear Goal </b>
      </li>
      <li>
        <u> Step 3: Start Small </u>
      </li>
      <li>Step 4: Create a Routine</li>
      <li>Step 5: Track Your Progress</li>
      <li>
        <mark> Enjoy! </mark>
      </li>
    </ol>

    <h2>
      <mark> Unordered List - Benefits of Learning HTML </mark>
    </h2>
    <ul>
      <li>Create websites</li>
      <li>Understand web development</li>
      <li>Express creativity online</li>
    </ul>
  </body>
</html>

				
			

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

X