WIM/WIM4.1/tp/tp1/ex1/index.html

54 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2022-04-08 17:31:34 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
<style>
.menu {
text-align: center;
}
.row {
display: flex;
align-items: center;
justify-content: center;
}
.cell {
width: 8px;
height: 8px;
font-size: 10px;
border: 1px solid black;
margin-top:-1px;
margin-left : -1px;
/* border-style : solid;
border-width : 0px 1px 1px 0px;
border-color : black;*/
/* display: inline-flex;
justify-content: center;
align-items: center;
font-weight: bold;*/
}
</style>
</head>
<body>
<menu class="menu">
<button id="next-move">Next</button>
<button id="autoplay">Auto</button>
<button id="plus-100">Next 100</button>
<button id="restart">Restart</button>
<button id="new_taille">Taille</button>
<br><br>
Nombre de mouvements : <span id="move-value"></span>
</menu>
<div id="container"></div>
<script src="script.js"></script>
</body>
</html>