Create a paragraph with some text and a button. When the button is clicked, change the text color of the paragraph to blue.
<button onclick="changeColor()">Change Color</button>
# The paragraph text changes to blue when the button is clicked
Create a paragraph with some text and a button. When the button is clicked, increase the font size of the paragraph text.
<button onclick="increaseFont()">Increase Font</button>
# The paragraph font size increases when the button is clicked
Create a button that, when clicked, changes the background color of the web page to a random color from a predefined list.
<button onclick="randomBg()">Random Background</button>
# The background color of the page changes randomly each time the button is clicked