19 lines
343 B
HTML
19 lines
343 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Web Socket Demo</title>
|
|
</head>
|
|
<body>
|
|
<ul id="mot"></ul>
|
|
|
|
<form>
|
|
Lettre : <input id='lettre' type="text"/>
|
|
<br />
|
|
<button type="submit">Jouer</button>
|
|
</form>
|
|
|
|
<script src="client.js"></script>
|
|
</body>
|
|
</html>
|