xxxxxxxxxx
35
var imagemEducador;
var imagemProgramadora;
function preload(){
imagemEducador = loadImage("foto_educador.png")
imagemProgramadora = loadImage("foto_programadora.png") ;
}
function setup() {
createCanvas(500, 500);
}
function draw() {
background(220);
textSize(36);
fill(10);
text("Créditos", 160,70);
textSize(20);
text("RENATO RODRIGUES", 200, 120 );
text("JÚLIA MAFRA", 240, 300 );
textSize(16);
text("Função: Educador", 230, 140 );
text("Função: Programadora", 230, 320 );
textSize(14);
fill(80);
text("Licenciado em Matemática pela Universidade Federal do Rio Grande do Norte, Especialista em Educação ...", 180,165, 300 )
text("Estudante do Bacharelado em Ciências e Tecnologia na UFRN.", 180,345, 300 )
image(imagemEducador,20, 110);
image(imagemProgramadora,20, 280);
}