This repository has been archived on 2025-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
Webtris/webtris.html

31 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Webtris</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/webtris.js"></script>
</head>
<body>
<h1>WEBTRIS</h1>
<div id="grid">
<table id="hold"><table>
<table id="matrix"><table>
<table id="next"><table>
<table id="stats">
<tbody>
<tr><td class="stat-label">SCORE</td><td class="stat-value" id="score">0</td></tr>
<tr><td class="stat-label">RECORD</td><td class="stat-value" id="highScore">0</td></tr>
<tr><td class="stat-label">TEMPS</td><td class="stat-value" id="time">00:00</td></tr>
<tr><td class="stat-label">NIVEAU</td><td class="stat-value" id="level">0</td></tr>
<tr><td class="stat-label">OBJECTIF</td><td class="stat-value" id="goal">0</td></tr>
<tr><td class="stat-label">LIGNES</td><td class="stat-value" id="clearedLines">0</td></tr>
</tbody>
</table>
</div>
<div id="play">
<a href="webtris.html">REJOUER</a>
</div>
</body>
</html>