Our quiz game can display the home page, the list of categories, the result page, but we can't even display questions! Let's do that!
Here is the HTML code you need to have:
<div>
<h2 class="question">Question here</h2>
<ul class="answers">
<li><a class="btn btn-primary">Answer 1</a></li>
<li><a class="btn btn-primary">Answer 2</a></li>
<li><a class="btn btn-primary">Answer 3</a></li>
<li><a class="btn btn-primary">Answer 4</a></li>
</ul>
</div>
Everything is static for now, we will add the logic in the next steps.
See the result of your code (don't forget to refresh to see changes)
Once the tests are passing, you can go to the next step.