You will write your name and something about you below it. You will use two different colors.
Watch Fun Programming [video 25] if possible
To write text to the screen you need the following functions:
textSize() which is how big you want the text
fill(r, g, b) which is the color you want the text
text("words", x, y) which is the words you want to appear and where to start the upper let corner
Here is an example of the code:
textSize(20)
fill(220, 10, 220)
text ("Mrs Reh is awesome", 200, 200)
Two lines of text:
function draw() {
textSize(30)
fill(220, 10, 220)
text ("Mrs Reh", 200, 200)
fill(30, 50, 100)
text ("is awesome!", 200, 250)
}