16 lines
573 B
HTML
16 lines
573 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include 'head.html' %}
|
|
<body>
|
|
<header>
|
|
<img src="../static/pinguin(1).gif" alt="Mascotte animée" class="header-gif" />
|
|
<h1>Questions </h1>
|
|
{% include 'header.html' %}
|
|
|
|
</header>
|
|
<button id="strt" class="ans" onclick="startQuiz({{questions.nbQuestion}})">Start Quiz!</button>
|
|
{% include 'question.html' %}
|
|
<h2 id="finalScore">continue to get your final score...</h2>
|
|
</body>
|
|
</html>
|