You already have some links. They donât work though right?
They need somewhere to go.
So create the required sections and give them the id that matches the links that you have in the navbar.
The thing to remember about flexbox is that only the direct child elements of the flex container will become flex items. Youâve made your html body a flex container, so you need to thing about which child elements will be affected.
You can create more than 1 flex container if needed.
Hi, you should put some into de nav element like "a or li " element, after you have to add the href with the ID where you want go to.
For example:
<nav> // this wrapper for the links or content text
<ul> // this element is for the good pratices, but not is necessary
// then, into <nav>, in this case <ul> you put the text with href
<a href="your link or your section page (#form)">
</ul>
</nav>
Iâve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the âpreformatted textâ tool in the editor (</>) to add backticks around text.