
Sometimes you want to add `a` element to your website but still don’t know where it will link.
This is also handy when you’re changing the behavior of a link using JavaScript, which we’ll learn later.
For example the current value of href attribute is `https://www.freecodecamp.org`.
Replace href value with…

We learned how to add heading elements, paragraph element, image and anchor element, today it’s time to learn how to nest them within themselves.
Like example below:
```
<>...<>...</>...</>
```
If you notice we encapsulated one element within other element, let’s break it down a little bit for better understanding 👇
For example if we…