1<a href="link.html"> text link </a> <!-- link to html -->
2<a href="google.com" URL> Google </a> <!-- link to site -->
3<a href="link.html"><button> Link </button></a> <!-- Button link -->
4
1<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
2 Example Link
3</a>
1<!-- How to link to a website? -->
2<a href="url"> Some text... </a>
3
4
5<!-- How to create a link to another file? -->
6<a href="path to de file"> Some text... </a>
7
8
9<!-- How to create a link to a subsection within the document? -->
10<!-- Example: object to which we want to jump to: -->
11<h1 id="some id"> Title </h1>
12<!-- linked text: -->
13<a href="#some id"> Some text... </a>
14
15
16<!-- How to associate a link to an image? -->
17<a href="url">
18<img src="path to image" alt="" style="width:42px;height:42px;">
19</a>