learning how to structure page
is the structure for the nav good? I want to learn how to structure html documents https://codepen.io/vert-wilson/pen/vYbdNox
2 Replies
if your nav items are pointing to another page or another section of the current page, you should use anchor tags
<a href="...">Blog</a>
buttons are used to trigger actions, such as a form submit or some sort of javascript functionOk thanks got it so I need to change from btn to a right