-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
67 lines (62 loc) · 1.85 KB
/
game.html
File metadata and controls
67 lines (62 loc) · 1.85 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>64-31 - Projet - Game</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="ressources/css/style.css" />
<link rel="stylesheet" href="ressources/css/mobileStyle.css" />
<!--<link rel="stylesheet" href="ressources/css/gameStyle.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">-->
</head>
<body>
<header>
<h1>HES-SO Vs - 64-31 - Web Development</h1>
<nav>
<ul>
<li class="hamburger">
<img src="ressources/images/website/hamburger_icon.svg" />
</li>
<li>
<a href="description.html">Description</a>
</li>
<li>
<a href="sketch.html">Sketch</a>
</li>
<li>
<a href="mockup.html">Mockup</a>
</li>
<li>
<a href="flow.html">Flow</a>
</li>
<li>
<a href="logbook.html">Logbook</a>
</li>
<li class="active">
<a href="game.html">Game</a>
</li>
<li>
<a href="forms.html">Forms</a>
</li>
</ul>
</nav>
</header>
<main>
<!-- Début zone pour votre contenu -->
<section id="articles">
<article>
<header>
<h2>Play our game !</h2>
<canvas id="gameCanvas" width="800" height="500"></canvas>
<script type="module" src="ressources/js/script.js"></script>
<p>By Matthias Gaillard the 02/11/2024 at 13:00</p>
</header>
</article>
</section>
<!-- >Fin zone pour votre contenu -->
</main>
<footer>
<img id="logo" src="ressources/images/website/logo.png" />
</footer>
</body>
</html>