Mettre à jour 'Leo.html'
This commit is contained in:
parent
ed9734331e
commit
696d7f290e
1 changed files with 42 additions and 5 deletions
47
Leo.html
47
Leo.html
|
@ -1,14 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
|
||||
|
||||
<html>
|
||||
<title>Home</title>
|
||||
<title>Morpion</title>
|
||||
<header>
|
||||
<nav>
|
||||
<a href="Page1.html">Home</a>
|
||||
<a href="Puissance4.html">Puissance 4</a>
|
||||
<a href="Morpion.html">Morpion</a>
|
||||
<a href="Snake.html">Snake</a>
|
||||
<a href="JustePrix.html">Juste Prix</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<h1 >
|
||||
|
||||
<h1 id="TitreMorp">Bienvenue sur le TIC-TAC-TOE </h1>
|
||||
<p id="RegleMorp">Règles du jeu: à 2 joueurs, vous jouez au tour par tour. Il faut aligner 3 symboles pour gagner.</p>
|
||||
<table id="tmorp">
|
||||
<tr>
|
||||
<td class="case"></td>
|
||||
<td class="case"></td>
|
||||
<td class="case"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="case"></td>
|
||||
<td class="case"></td>
|
||||
<td class="case"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="case"></td>
|
||||
<td class="case"></td>
|
||||
<td class="case"></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
<script type="text/javascript" src="leo.js"></script>
|
||||
|
||||
</body>
|
||||
<footer>
|
||||
</footer>
|
||||
</html>
|
||||
|
||||
<!-- [0,1,2]
|
||||
[3,4,5]
|
||||
[6,7,8]
|
||||
-->
|
Loading…
Reference in a new issue