Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active October 18, 2017 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarin/7a660e651b763e2ebe9a8610df61608d to your computer and use it in GitHub Desktop.
Save radarin/7a660e651b763e2ebe9a8610df61608d to your computer and use it in GitHub Desktop.
Hyperlink
<!-- Öffnet neue Seite im selben Fenster -->
<a href="http://www.domain.ch">www.domain.ch</a>
<a href="http://www.domain.ch" target="_self">www.domain.ch</a>
<a href="../index.html">www.domain.ch</a>
<!-- Öffnet neue Seite in neuem Fenster-->
<a href="http://www.domain.ch" target="_blank" rel="noopener">www.domain.ch</a>
<!-- Lädt aktuelle Seite neu -->
<a href="">www.domain.ch</a>
<!-- Springt an den Seitenanfang -->
<a href="#">www.domain.ch</a>
<a href="#top">www.domain.ch</a>
<!-- Anker -->
<a name="hier"></a>
<!-- Springt zum Anker 'hier' -->
<a href="#hier">www.domain.ch</a>
<!-- öffnet neue eMail -->
<a href="mailto:info@domain.ch">info@domain.ch</a>
<!-- Bild-Link -->
<a href="../index.html">www.domain.ch</a>
<img src="../images/bild.jpg" width="100" height="50" alt="Sonne">
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment