function main() {
addImage();
addText();
}
function addImage(){
let kneeSurgery = new WebImage("https://codehs.com/uploads/56c4b32cfe9a3b1886c0f175ae98ca58");
kneeSurgery.setSize(300,150);
kneeSurgery.setPosition(100,200);
add(kneeSurgery);
}
function addText(){
let thatFeelingWhen = new Text("THAT FEELING WHEN KNEE SURGERY IS TOMORROW", "Impact");
thatFeelingWhen.setColor("White");
thatFeelingWhen.setPosition(100,210);
add(thatFeelingWhen);
}
main();
You have to upload the image to codehs.com and then copy the link for the web image URL