Migrazione codebase a git

This commit is contained in:
2026-02-12 08:55:59 +01:00
commit 53ee915ec7
21 changed files with 158 additions and 0 deletions

47
index.html Normal file
View File

@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KASANE TETORIS</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body onload="SvuotaTavola()">
<h1>TRIS OFFICIALE</h1>
<br><br>
<div class="playfield">
<div class="row">
<div id="1" class="cell" onclick="SignCell(1)"></div>
<div id="2" class="cell" onclick="SignCell(2)"></div>
<div id="3" class="cell" onclick="SignCell(3)"></div>
</div>
<div class="row">
<div id="4" class="cell" onclick="SignCell(4)"></div>
<div id="5" class="cell" onclick="SignCell(5)"></div>
<div id="6" class="cell" onclick="SignCell(6)"></div>
</div>
<div class="row">
<div id="7" class="cell" onclick="SignCell(7)"></div>
<div id="8" class="cell" onclick="SignCell(8)"></div>
<div id="9" class="cell" onclick="SignCell(9)"></div>
</div>
</div>
<br><br>
<button onclick="Riavvia()">Riavvia</button>
<p id="winTxt"></p>
<br><br>
<form>
<h3>Selezione skin</h3>
<select name="skin" id="skinName">
<option value="default">Predefinito</option>
<option value="archbtw">Arch Linux</option>
<option value="ludopatia">LET'S GO GAMBLING</option>
</select>
<button onclick="ChangeSkin()">Imposta</button>
</form>
</body>
</html>