<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anchor Tag Example</title>
</head>
<body>
<h1>Anchor Tag Examples</h1>
<!-- Link to another website -->
<p><a href="[Link] Google</a></p>
<!-- Link to another page in the same website -->
<p><a href="[Link]">About Us</a></p>
<!-- Link to a section on the same page -->
<p><a href="#section1">Go to Section 1</a></p>
<!-- Open a link in a new tab -->
<p><a href="[Link] target="_blank">Open Wikipedia in a new
tab</a></p>
<!-- Download a file -->
<p><a href="[Link]" download>Download PDF File</a></p>
<!-- Section for internal linking -->
<div id="section1">
<h2>This is Section 1</h2>
<p>Welcome to Section 1 of this page.</p>
</div>
</body>
</html>