-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 983 Bytes
/
index.html
File metadata and controls
40 lines (37 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>TP1-Exo3</title>
<style>
body {
margin: 0px;
padding: 0px;
}
#monFond,
#AnimPaysage1 ,
#monPersonnage
{
position: absolute;
top: 0;
left: 0;
}
#bateau{
position: absolute;
top: 20px;
left: 290px;
}
#tutoriel{
position: absolute;
top: 490px;
}
</style>
</head>
<body>
<canvas id="monFond" width="640" height="480"></canvas>
<canvas id="monPersonnage" width="640" height="480"></canvas>
<canvas id="bateau" width="345" height="480"></canvas>
<canvas id="AnimPaysage1" width="640" height="480"></canvas>
<canvas id="tutoriel" width="640" height="250"></canvas>
<script type="module" src="./js/prgjsexo3.js"></script>
</body>