Skip to content

Commit

Permalink
add file index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
wwwwwwwwendel committed Aug 9, 2023
1 parent 84361d8 commit 4385659
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Aula 1</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.min.js" ></script>
<script>
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}

function draw() {
stroke(0, 255, 0)
circle(mouseX -25, mouseY -25 , 80);
}
</script>
</body>
</html>

0 comments on commit 4385659

Please sign in to comment.