You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
987 B
38 lines
987 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1">
|
|
<title>Set</title>
|
|
<link rel="stylesheet" href="vues/css/style.css" />
|
|
|
|
</head>
|
|
<body>
|
|
<div class="custom-select ">
|
|
<h2 id="daltoSettings">RÉGLAGES COULEURS 0</h2>
|
|
<select id="color-selector">
|
|
<option class="text" id="normal" value="normal" onclick="changeColorMode()">Normale</option>
|
|
<option class="text" id="Daltonien" value="Daltonien" onclick="changeColorMode()">Daltonien</option>
|
|
|
|
</select>
|
|
</div>
|
|
|
|
<div class="wrapper">
|
|
<h1>(TEST) Set</h1>
|
|
<p>Find sets.</p>
|
|
<p>Sets found: <span data-display="score" class="score">0</span></p>
|
|
<div class="game-board" data-display="game-board"></div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script type="text/javascript" src="vues/js/Settings.js"></script>
|
|
<script src="vues/js/set.js"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|