HTML برای پیوند به پرونده های دیگر در وب از فرا پیوندها استفاده می کند.
مثالها
<html>
<body>
<p>
<a href="?page=lastpage.htm">
This text</a> is a link to a page on
this Web site.
</p>
<p>
<a href="?page=../../www.microsoft.com/default.htm">
This text</a> is a link to a page on
the World Wide Web.
</p>
</body>
</html>
این مثال نشان می دهد که چگونه می توان، در متن نوشته شده، فراپیوندی ایجاد کرد.
<html>
<body>
<p>
You can also use an image as a link:
<a href="http://www.farajpour.ir">
<img border="0" src="./content/media/tryit/buttonnext.gif" width="65" height="38">
</a>
</p>
</body>
</html>
این مثال عکسی را به یک فراپیوند تبدیل می کند.