
or

Developers: you can send text from your web page to this site, so that you and your users can start creating a Wordle from text you've generated.
To create a Wordle from raw text, you'll need to POST to http://www.wordle.net/advanced, with the parameter "text" containing the text. You can do this, for example, with a form:
<form action="http://www.wordle.net/advanced" method="POST">
<textarea name="text" style="display:none">
How much wood would a woodchuck chuck if
a woodchuck could chuck wood?
</textarea>
<input type="submit">
</form>
Try it:
