'Adding CSS properties to JavaScript Quiz

So I am making a quiz, a simple one. I am currently trying to add CSS to the different lines.

const quizContainer = document.getElementById('quiz');
const resultsContainer = document.getElementById('results');
const submitButton = document.getElementById('submit');
const myQuestions = [{
  question: "What is used primarily to make the Quiz?",
  answers: {
    a: "CSS",
    b: "JavaScript",
    c: "HTML"
  },
  correctAnswer: "b"
}];

An example is adding padding or color to the question:

"What is used primarily to make the Quiz?""

Thank you :)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source