mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
17 lines
402 B
HTML
17 lines
402 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</head>
|
|
<script src="index.js" defer></script>
|
|
|
|
<body>
|
|
<textarea id="textInput"></textarea>
|
|
<button id="processButton">Process</button>
|
|
<h3>Output</h3>
|
|
<textarea id="myTextarea"></textarea>
|
|
<button onclick="addArrayToTextarea()">Add Array to Textarea</button>
|
|
</body>
|
|
|
|
</html> |