HTML Course Hindi - Beginner to Pro ( 2023 ) | Chapter 6
Link
using
<a>
tag you can navigate from one page to another<a>
has target attribute which decides how you want to open your page_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
Tables
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 namesTo add row in table we use
<tr>
<th>
is used to asign table header name<td>
is used to feed table dataHTML Course Hindi - Beginner to Pro ( 2023 ) | HTML COURSE FOR BEGINNERS | BASIC HTML COURSE WITH NOTES. NOTION NOTES - https://alkaline-olivine-4e5.notion.site/HTML-Course-Hindi-Beginner-to-Pro-2023-3b65cab8001e41d6a3af8ee2a7955b44 SOURCE CODE - https://github.com/anshuopinion/HTML-COURSE-2023 Linkedin - https://linkedin.com/in/anshuopinion Twiiter -https://twiiter.com/dosomecoding Telegram Channel - https://telegram.me/dosomecoding Github - https://github.com/anshuopinion