DEV Community

Cover image for HTML da jadvallar bilan ishlash
Jamoliddin
Jamoliddin

Posted on

1

HTML da jadvallar bilan ishlash

Jadval kodi quyidagicha

<table>
    <thead>
    <tr>
   <th>Name</th>
   <th>Surname</th>
   <th>Phone Number</th>
    </tr>
    </thead>

    <tbody>
    <tr>
        <td>Alex</td>
        <td>Iwobi</td>
        <td>123451</td>
    </tr>
    <tr>
        <td> Neymar</td>
        <td>Junior</td>
        <td>28212345</td>
  *  `table` - bu htmlda jadvallar shu tag orqali yasaladi  </tr>
    </tbody>
</table>
Enter fullscreen mode Exit fullscreen mode
  • table - bu htmlda jadvallar shu tag orqali yasaladi
  • thead - bu jadvalning asosiy qismi bu qismdi jadvalga o'zgaruvchilar beriladi
  • tbody - bu jadvalning qiymatlar beriladigan qismi hisoblanadi. Bu qismda siz jadvallarga qiymat berishingiz mumkin
  • th va tr - bu

Top comments (0)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay