HTML and Greenfoot Important Stuff Flashcards

1
Q

Centre text (HTML)

A

<h1></h1>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Link (HTML)

A

<a>link text</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to do random direction?

A

Go into public void act()

Type this:

setDirection(Greenfoot.getRandomNumber(4));
move();
setDirection(EAST)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly