-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 838 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Estudo em HTML CANVAS</title>
<style type="text/css" media="screen">
a {color: blue; cursor: pointer;}
</style>
</head>
<body>
<h1>Links para meus experimentos feitos no canvas:</h1>
<a href="./FollowingBall" target="_blank">Following Ball</a><br>
<a href="./MovingBall" target="_blank">Moving Ball</a><br>
<a href="./Particles" target="_blank">Particles</a><br>
<a href="./BoucingBalls" target="_blank">Boucing Balls</a><br>
<a href="./ImageDrawing" target="_blank">Image Drawing</a><br>
<a href="./Animation" target="_blank">Simple Animation</a><br>
</body>
</html>