HTML Links
HTML Links
On this page
HTML Links Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Links</title>
</head>
<body>
<h1>HTML Links</h1>
<p>Click on the following link</p>
<p><a href="https://www.csias.in/">Visit csias.in</a></p>
</body>
</html>HTML target Attribute
<!DOCTYPE html>
<html>
<head>
<title>HTML target Attribute</title>
</head>
<body>
<h1>HTML target Attribute</h1>
<a href="https://www.csias.in/" target="_blank">Visit csias.in</a>
</body>
</html>Link to an Email Address
<!DOCTYPE html>
<html>
<head>
<title>Link to an Email Address</title>
</head>
<body>
<h2>Link to an Email Address</h2>
<p><a href="mailto:webmaster@example.com">contact webmaster</a></p>
</body>
</html>Link Titles
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Link Titles</title>
</head>
<body>
<h2>Link Titles</h2>
<p>Click on the following link</p>
<a href="https://www.csias.in/html/" title="Go to csias.in HTML Page">Visit our HTML Tutorial</a>
</body>
</html>Create Bookmarks
Chapter 1
This chapter explains ba bla bla
Chapter 2
This chapter explains ba bla bla
Chapter 3
This chapter explains ba bla bla
Chapter 4
This chapter explains ba bla bla
Chapter 5
This chapter explains ba bla bla
Chapter 6
This chapter explains ba bla bla
Chapter 7
This chapter explains ba bla bla
Chapter 8
This chapter explains ba bla bla
Chapter 9
This chapter explains ba bla bla
Chapter 10
This chapter explains ba bla bla
Chapter 11
This chapter explains ba bla bla
Chapter 12
This chapter explains ba bla bla
Chapter 13
This chapter explains ba bla bla
Chapter 14
This chapter explains ba bla bla
Chapter 15
This chapter explains ba bla bla
<!DOCTYPE html>
<html>
<head>
<title>Create Bookmarks</title>
</head>
<body>
<p><a href="#C1">Jump to Chapter 1</a></p>
<p><a href="#C2">Jump to Chapter 2</a></p>
<p><a href="#C3">Jump to Chapter 3</a></p>
<p><a href="#C4">Jump to Chapter 4</a></p>
<p><a href="#C5">Jump to Chapter 5</a></p>
<p><a href="#C6">Jump to Chapter 6</a></p>
<p><a href="#C7">Jump to Chapter 7</a></p>
<p><a href="#C8">Jump to Chapter 8</a></p>
<p><a href="#C9">Jump to Chapter 9</a></p>
<p><a href="#C10">Jump to Chapter 10</a></p>
<p><a href="#C11">Jump to Chapter 11</a></p>
<p><a href="#C12">Jump to Chapter 12</a></p>
<p><a href="#C13">Jump to Chapter 13</a></p>
<p><a href="#C14">Jump to Chapter 14</a></p>
<p><a href="#C15">Jump to Chapter 15</a></p>
<h2 id="C1">Chapter 1</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C2">Chapter 2</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C3">Chapter 3</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C4">Chapter 4</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C5">Chapter 5</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C6">Chapter 6</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C7">Chapter 7</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C8">Chapter 8</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C9">Chapter 9</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C10">Chapter 10</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C11">Chapter 11</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C12">Chapter 12</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C13">Chapter 13</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C14">Chapter 14</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C15">Chapter 15</h2>
<p>This chapter explains ba bla bla</p>
</body>
</html>