I have this piece of code inside my javascript, I want to select the element by the class name and then be able to style it, how can I do that?
const versesHtml = `
${verses.map( (v, i) => `<li class="text">${v.text_uthmani}</li> <li class="ayahNumber">{${i+1}}</li>`).join(' ')}
`;