mirror of
https://github.com/Chouchen/motsmeles.git
synced 2018-06-07 06:04:38 +02:00
6be68e5b1c
To clean, it comes from a personal side project
29 lines
640 B
HTML
29 lines
640 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mot mélés</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.4.0/fabric.min.js"></script>
|
|
<script src="const.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
|
|
</head>
|
|
<body>
|
|
<h1>Mots Mélés</h1>
|
|
<div id="playground" class="flip-container">
|
|
|
|
<div class="flipper">
|
|
<div class="front">
|
|
<div id="firstGame">
|
|
<canvas id="c"></canvas>
|
|
|
|
<ul id="words">
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |