quegzacov
2 years ago
1 changed files with 26 additions and 0 deletions
@ -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…
Reference in new issue