Add an example for internal link. (#29899)

Add an example that how we can make a link to another section on the same page.
This commit is contained in:
MasoomaJ
2019-01-17 18:34:30 -08:00
committed by Tom
parent e920ec0bea
commit 2e165048ed

View File

@ -18,6 +18,13 @@ By default, a linked page is displayed in the current browser window unless anot
```html
<a href= "https://guide.freecodecamp.org/">freeCodeCamp</a>
```
You can also create a link to another section on the same page.
#### Example:
```html
<h1 id="top"></h1>
<a href= "#top">Go to top</a>
```
An image can also be turned into a link by enclosing the `<img>` tag in an `<a>` tag.