Link
next
Links to the next logical document in a sequence, such as the next chapter or page of results.
Code examples
Good example
<link rel="next" href="/guide/chapter-2">Points from the current chapter to the next one in the sequence.
Avoid this example
<link rel="next">Has no href, so it does not identify the next document.
Recommendations
- 01Link to the immediate next itemKeep the sequence unambiguous. The target should be the next document, not simply another related page.
- 02Treat it as semanticsThe HTML relation describes document order. Do not rely on it alone for crawling, indexing, or user navigation.