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:
- Unordered list
<ul>
<li>apple</li>
<li>Banana</li>
<li>pineapple</li>
</ul>
- ordered list
<ol>
<li>apple</li>
<li>Banana</li>
<li>pineapple</li>
</ol>
- Definition list
<dl>
<dt>apple:</dt>
<dd>apple is a fruits.</dd>
</dl>****
- 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>
- 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>