-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (36 loc) · 845 Bytes
/
index.html
File metadata and controls
51 lines (36 loc) · 845 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
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Page d'introduction</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="fond">
<img src="images/image_de_fond.jpeg"/>
</div>
<div id="mario">
<a href="page2.html">
<img id="sonic" src="images/sonic.gif" alt="Mario" />
</a>
</div>
<div id="champig">
<img src="images/champi.png" alt="Champi"/>
</div>
<style>
div {
position: absolute;
top:500px;
width: 90px;
height: 90px;
margin: 5px;
}
</style>
<button id="left">Left</button>
<button id="right">Right</button>
<button id="down">Down</button>
<button id="up">Up</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="js/jquery.js"></script>
<script src="js/script.js"></script>
</body>
</html>