App Store

Goat Sports

Made By:Maxim, Robbie, Avrian, Ved

Lev

Level 1 Easy: Dribbling with one hand then the other.

Level 2 Medium: Dribbling with both hands and start shooting the ball.

Level 3 Hard:Dribbling with both hands then between your legs and try to make a 3 pointer or a long 2 pointer

Level 4 Very Hard: Dribbling up do a behind the back and do 5 3 pint shoots.

Level 5 compeptive:Pratice all your this and try to get in a basketball team and have fun but play hard.

This is an app template, use it to your liking!

Level 1 Easy:Pratice using the right form by make a fist and then put your other hand over the hand in the fist

Level 2 Medium:Try to get the volleyball over the net by using the fist and your hand over your fist. Level 3 Hard: Start trying to sevre the ball by pratice with a family or friend under hand.

Level 4 Very Hard: Start trying to sevre over the net and try to us over hand

Level 5 compeptive: If you have it all master you can start compeptive

let coll = document.getElementById("collapsemenu"); let menu = document.getElementById("menu"); coll.onclick = function() { if (menu.style.display === "inline-block") { menu.style.display = "none"; } else { menu.style.display = "inline-block"; } }; // This variable is pointing to the screen so it can be changed. let screen = document.getElementById("screen"); // This is a function that updates the screen each time a menu button is clicked. function updatepages(pagenumber) { //First, we check that the selected page exists. if (document.getElementById(pagenumber)) { // Then, the screen is cleared of its content. screen.innerHTML = ""; // Next, page content is copied from the document, based on the id of the span. screen.appendChild(document.getElementById(pagenumber).cloneNode(true)); // Finally, the menu is hidden. menu.style.display = "none"; } } // This updates the screen for the very first time, so we will see the home page at the start. updatepages(1);