??? ??? ? ?? ???? ??? ????? ? ???? ??? ??? ? ????? ?? ???? ???? ? ??? ???. ? ????? ?? ???? ??? ? ??? ???, ??? ?? ????? ?? ??? ?? ??? ?????. HTML ??? ??? ?? href ??? ?? ??? ??? ????? ????. ????? HTML ??? ??? ?? ??? ????? ?????. ???? ??? ? ??? ?? ??? ?? ????? ?????. CSS? ???? ? ??? ??? ??? ?? ????. ?? ????? HTML?? ??? ??? ?? ?? ?????.
HTML? ??? ?? ??
HTML? ???? ??? ??? ???? ??? ? ??? ???????.
??:
<a href="url"> Text_Content </a>
? ???? ?? ??? ?? ??? ?? ??? ??? ???? ??? ?? ??? ?? ??? ???? ?? ? ??? ???.
?? ??? HTML ?? ?? ????? ? ?? ?? ??? ??? ???? ?????.
??:
<a href="url"></a<strong>>
??? ??? ???? ?? ???? ??? ??? ???? ?????? ?? ???? ??? ? ?? ????.
?? ???? ??? ?? ?? ??? ?? ?? ?? ??? ???? ? ?? ????
??:
<a href="page_name.html"></a>
HTML ??? ???? ??? ???? ? ???? ?? ??? ? ???? ? ??? ? ? ???? ???? ?? ? ?? ? ? ? ????.
??:
<a href="Browser's _URL" target="_blank"></a>
????? ?? ??? ??? ??? ?? ??? ???? ?? ?????.
??:
<a href="path" target="_parent"> </a>
HTML? ???? ???? ???? ??? ??????
??? ?? ?? ? ??? ?? ?? ??? ?? ???? href ??? ?? ?? ??? ???? ? ???, ??? ? ?? ??? ???? ??? ???????.
?? ??? ? ? ? ??, ?? ??? ???? ??, ?? ??? ??? ??? ?? ??? ???? ?? ??? ??? ???? ??? ? ?? ????. _top ??? ?? ??? ??? ???? ?? ???? ??? ?????.
??? ?? ??
HTML? ??? ???? ??? ??? ??? ??? ???????. ??? ??? ????? ??? ??? ???. ??? ??? ????? ???? ?? ?? ??? ?? ???? ??? ??? ???? ? ?? ??? ?? ??? ? ????.
???? ????? ?? ? href? ??? '#' ??? ???? ??? ?? ??? ????? ?? ??? ???? id? ???? ???. . ?? ??? ????.
?:
<a href="#home"> Homepage </a>
<h4 id="home"> Home </a>
<h6>This code works as a bookmark, so can jump directly to the home
Section by clicking on link </h6>
?? ?? ???? URL? href ??? ?? ?? ??? ????? ?? ?? ????? ?? ??? ?? ? ?? ????. ??? ????.
?:
<a href="Demo.html #contactus"> Contact US </a>
?? ???? ??
HTML ??? ?? ?? ????? ??? ?? ??? ??? ?? ????. ???? ??? ???? ?? ??? ??? URL? ???? ?? ????? ? ??? ??? ??? ??? ??? ????? ???? ???????. ??? PDF, zip, jpg ?? ?? ?? ??? ????? ? ????.
?:
<a href="downloads/demo.pdf"> This will download file in PDF format </a>
<a href="downloads/brochures.zip"> This will download file in zip
Format </a>
<a href="downloads/dinjo.jpg"> This will download file as a Image</a>
HTML ????? ???: HTML ??? ? ?? ??? ???? HTML ??? ??? ???? ????. ?? ??? ?? ??? ? ????.
?:
<a href="demo.html"> <img src=”travelling.png alt="Travel"> </a>
????? ??: HTML??? ??? ??? ??? ? ????. ????? ?????? ??? ???? ???. ??? ?? ???? ??? ??? ??? ???? ????.
HTML? ??? ?? ?
??? ??? ??? ??? ????
?? #1
? ???? ??? ????? ?? ??? HTML ??? ???? ?? ??? ???? ??? ??? ????? ?????.
??:
<!DOCTYPE html>
<html>
<head>
<title>Linking Pages in HTML</title>
</head>
<body>
<h2>HTML Page Link</h2>
<p>Stay stunned with us for the latest news and update across all over globe </p>
<h4><a href="https://timesofindia.indiatimes.com/">Latest News and Updates</a></h4>
<p>Open another webpage by linking pages in HTML</p>
<h4><a href="Webpage%20Design%20HTML.html">To browse new webpage click Here</a></h4>
</body>
</html>
??:

? ?? ??? ????? ????

? ?? ??? ?? ?? ???? ??? ????? ????

?? #2
??? ??? ??? ? ??? ????? ?? ???? ??? ???? ? ??? ?? ????.
??:
<html>
<head>
<title>Linking Pages in HTML</title>
</head>
<body>
<h2>linking Pages in HTML</h2>
<p>Learn and grow your Technical skills with Us. We have exciting courses for you.</p>
<h4><a href="https://www.educba.com/" target="_blankwindow">More About US</a></h4>
<h2>HTML Image as Page Link</h2>
<p>As we discussed we can give link to the image, so are giving link to the image here which will open another page.</p>
<a href="Webpage%20Design%20HTML.html">
<img src="t3.jpg" alt="HTML tutorial" style="width:42px;height:42px;border:0;">
</a>
</body>
</html>
??:

The first link to open another page in the new target window:

Image as a link to open another webpage:

Example #3
In this example, we are using Button as a link.
Code:
<!DOCTYPE html>
<html>
<body>
<h4>Linking Pages in HTML Using Button as a Link</h4>
<p>Most important thing we can do give the link to the button to open another page.</p>
<button onclick="document.location='HTML inline tags.html'">HTML Inline tags</button>
</body>
</html>
Output:

Whenever we are going to click on the button, it will work as a link to open another page:

Conclusion
Finally, linking pages in HTML can be done by using tag with a href attribute. This element is useful in various features to create a bookmark, open the document in the target blank tab, the same thing in parent tab, self tab, create the image as a link, and create a button as a link and many more others.
? ??? HTML? ??? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!