Day 4/200 (Full stack)
Munin Borah

Munin Borah @munin-1

About: 🚀 On a 1825-day mission to become a top 0.1% programmer | 💡 Learning in public | Building cool things & sharing my journey

Joined:
Mar 30, 2025

Day 4/200 (Full stack)

Publish Date: May 15
0 0

Today's progress:
✅Learned about HTML lists.
✅Learned about HTML tables.
✅Learned about HTML forms.

-one step at a time.

Here's the detailed breakdown.

  • HTML lists: So, HTML lists are used to create a list in HTML. There are three types of lists in HTML:
  1. Unordered list
<ul>
        <li>apple</li>
        <li>Banana</li>
        <li>pineapple</li>
    </ul>
Enter fullscreen mode Exit fullscreen mode
  1. ordered list
   <ol>
        <li>apple</li>
        <li>Banana</li>
        <li>pineapple</li>
    </ol>
Enter fullscreen mode Exit fullscreen mode
  1. Definition list
  <dl>
        <dt>apple:</dt>
        <dd>apple is a fruits.</dd>
    </dl>****
Enter fullscreen mode Exit fullscreen mode
  • HTML tables: HTML tables are used to create tables. We have all seen some tabular data in our lives, so we can create any type of format from HTML tables.
  <h1>Html tables</h1>
    <table>
      <thead>
        <tr>
            <th>Name</th>
           <th>class</th>
        </tr>
      </thead>
      <tbody>
        <tr>
            <td>Munin</td>
            <th>12th standard</th>
        </tr>
        <tr>
            <td colspan="2">thanks</td>
        </tr>
      </tbody>
    </table>

Enter fullscreen mode Exit fullscreen mode
  • HTML forms: We use HTML forms to collect user input and create forms in HTML.
 <h1>Html forms</h1>
    <form action="   ">
        <div>
            <label for="name">Name</label>
            <input type="text" placeholder="enter name">
        </div>

Enter fullscreen mode Exit fullscreen mode

Image description

Comments 0 total

    Add comment