HTML Course Hindi - Beginner to Pro ( 2023 ) | Chapter 6

Link

notion image
using <a> tag you can navigate from one page to another
<a> has target attribute which decides how you want to open your page
notion image
  • _self - Default. Open same tab
  • _blank - open in new tab
  • _parent open parent frame
  • _top - Opens in the full body of the tab
 

Lists

Unorder List

<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
List order is not specified

Ordered List

<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
This list are ordered
you can specify order type
notion image

Tables

notion image
Table tag used to create table inside any website.
table helps us in maintaining large chunks of data
 
To create table first we add table tag
Inside table tags we had <thead> & <tbody> tag to group table data and table header names
To add row in table we use <tr>
<th> is used to asign table header name
<td> is used to feed table data