HTML (21)

Internal Linking
This is used to link one section of the same document to another.
Anchor can also be used in this to move a reader to a particular section of a document.
Tags : <a name ="sample">sample</a>
<a href ="#sample">sample</a>
Example ↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<p>This is a
<a name ="sample">sample</a>
text</p>
<p>Computer once meant a person who did computations, but now the term almost universally refers to automated electronic machinery</p>. <p>The first section of this article focuses on modern digital electronic computers and their design, constituent parts, and applications.</p>
<p>click the
<a href ="#sample">link</a>
</p>
</body>
</html>

0 Comments