mirror of
https://github.com/fooflington/wordsearch.git
synced 2025-01-22 17:29:55 +00:00
27 lines
467 B
Plaintext
Executable File
27 lines
467 B
Plaintext
Executable File
<html>
|
|
<head><title>Wordsearch builder</title></head>
|
|
<body>
|
|
<h1>Wordsearch builder</h1>
|
|
<h2>Words</h2>
|
|
<form action="build.jsp">
|
|
<textarea name="words" rows="10">
|
|
Kitchen
|
|
Lounge
|
|
Study
|
|
Ballroom
|
|
Conservatory
|
|
Billiard Room
|
|
Library
|
|
Hall
|
|
Dining Room
|
|
</textarea>
|
|
<br />
|
|
<input type="number" name="height" min="3" max="50" value="15" />
|
|
<input type="number" name="width" min="3" max="50" value="15" />
|
|
<input type="submit" value="Build!" />
|
|
</form>
|
|
|
|
|
|
</body>
|
|
</html>
|