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>