Skip to content

Commit

Permalink
New changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaNwaizu committed Jan 30, 2024
1 parent 656e1ec commit aef20c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion html-quiz.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h1>FE-quiz</h1>
<div class="html__container container ">
<div class="score__questions">
<p class="html__question-counter"></p>
<p class="html__score">Score: 0</p>
<p class="html__score">Points: 0</p>
</div>

<h1 class="html__title" id="html-question">A portrait that comically exaggerates a person's
Expand Down
2 changes: 1 addition & 1 deletion html-quiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ choices.forEach((choice) => {

const incrementScore = num => {
score += num
scoreCounter.innerText = `Score: ${score}`
scoreCounter.innerText = `Points: ${score}`

}

Expand Down

0 comments on commit aef20c9

Please sign in to comment.