Eu estou em dúvida de como fazer esse passo: 9. Each .nav-link element should have an href attribute. Qual é o href e se dentro da ancora mesmo ou dentro do button.
Hi,
the href attribute is given only to anchor elements. So when you use your anchor element, make sure to add the class of nav-link to them as well, and don’t use buttons.
Eu não estou conseguindo fazer href adequado para o link das etapas. Alguém pode me ajudar . Eu não estou conseguindo fazer de acordo com essa verificação: 10. Cada .nav-linkelemento deve ter um link para um elemento correspondente na página de destino (tem um hrefcom o valor do id de outro elemento, por exemplo #footer).
When setting the id of an element, you shouldn’t use # in the beginning of the id. You only add # when you’re linking to section in the page, using it’s id. For example href="#Contact" is correct, but that is looking for an element with the id Contact. You have #contact on your id which is not the same. Also don’t forget about the capital letters.