Browse Source

3.1415926535897932384626433832795028841971

master
quegzacov 2 years ago
parent
commit
e778948163
  1. 26
      index.html

26
index.html

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Roulette à eau</title>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<svg id="roulette" width="800" height="800">
<g stroke="black" stroke-width=2></g>
</svg>
<script type="text/javascript">
let names = new Array();
draw_roulette(200, 200, 200, names);
</script>
<button onclick="rotate()">Tourner</button>
<h1 id="winner"></h1>
<form name="myForm" action="/action_page.php" onsubmit="return validateForm()" method="post">
Ajouter quelqu'un: <input type="text" name="fname">
<input type="submit" value="Submit">
</form>
</body>
</html>
Loading…
Cancel
Save