Links einfügen in HTML mit A-Tag (ANCHOR)
https://www.edv-lehrgang.de/links-einfuegenHTML-Code, um Links zu einer Webseite einzufügen Ob die Links zu Webseiten oder zu Dateien führen, spielt im Grunde keine große Rolle. Zum Einfügen eines Links verwendet man den A-Tag, der von Anchor (Anker) abgeleitet wurde. Innerhalb des A-Tags muss außerdem angegeben werden, wohin der Link führen soll, z.B. zu einer Internetadresse oder Datei.
HTML Links Hyperlinks - W3Schools
https://www.w3schools.com/html/html_links.aspThe HTML <a> tag defines a hyperlink. It has the following syntax: <a href="url">link text</a> The most important attribute of the <a> element is the href attribute, which indicates the link's destination. The link text is the part that will be visible to the reader. Clicking on the link text, will send the reader to the specified URL address.