# 🏗️ Use JavaScript to Set Attributes in HTML Work with a partner to implement the following user story: * As a web developer, I want all of my titles on a webpage to have the same styling. ## Acceptance Criteria * It's done when all the `
` elements are selected and stored in a single variable. * It's done when the text of each `
` is set to `blue`, the font size is `30px`, and the text is `bold`. * It's done when the padding to the left of the title is set to `10px` and the margin is set to `0`. --- ## 💡 Hints How can you use a loop to iterate over a list of elements? ## 🏆 Bonus If you have completed this activity, work through the following challenge with your partner to further your knowledge: * How would using the `:scope` pseudo-class be useful when working with `querySelectorAll()`? Use [Google](https://www.google.com) or another search engine to research this.