-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (26 loc) · 1.31 KB
/
index.html
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
<!-- index.html -->
<!-- Website start page -->
<!doctype html>
<html lang="fr">
<head>
<!-- Encoding type -->
<meta charset="utf-8">
<!-- Forbid compatibility mode on Internet Explorer -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Fix size of the area visible to the user (for responsiveness) -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- jQuery is is released under the terms of the MIT license https://jquery.org/license/ -->
<title>SEGMent Web | Start</title>
</head>
<body>
<button type="submit" onclick="startScene(event)">Lancer la première image</button>
<script id="script" type="application/javascript" src="global.js"></script>
<script id="script" type="application/javascript" src="parser_json.js"></script>
<script id="script" type="application/javascript" src="transition.js"></script>
<script id="script" type="application/javascript" src="cookie.js"></script>
<script id="script" type="application/javascript" src="init.js"></script>
<script id="script" type="application/javascript" src="video_load.js"></script>
<script id="script" type="application/javascript" src="load_game.js"></script>
</body>
</html>