0% found this document useful (0 votes)
2 views1 page

Anchor Tag Usage in HTML

Uploaded by

aboutrana007
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Anchor Tag Usage in HTML

Uploaded by

aboutrana007
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

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>

You might also like