How to do user story 10 for my technical documentation page?
I don’t get it, could someone paraphrase what it’s asking me to do.
Thank you.
How to do user story 10 for my technical documentation page?
I don’t get it, could someone paraphrase what it’s asking me to do.
Thank you.
It would help if you posted your Codepen so we can see what you have tried.
If you look at the example project you can see:
a
elements with the class nav-link
<a class="nav-link" href="#Introduction">Introduction</a>
section
elements with the class main-section
and an id
that matches the a
elements href
<section class="main-section" id="Introduction">
I think I did that. can you check it, and give me a feed back again?
Thank you!
<br>
or <br/>
, not </br>
.But you really shouldn’t be using that element to create new lines between elements.
<a class="nav-link" href="#Jave_Script">Jave Script</a>
<a clas="nav-link" href="#Python">Python</a>
The link(s) href
and section(s) id
must match exactly.
The first element inside the main-section
elements has to be a header
(you have a br
element inside one of the sections)
The last two are from missing CSS.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.