3
|
1 <html>
|
|
2 <head>
|
|
3 </head>
|
|
4 <body>
|
|
5
|
|
6 <form method="post">
|
|
7 Type in some text
|
|
8 <textarea name="text" rows="25" cols="80"></textarea>
|
|
9 <input type="submit" value="Dissociate"/>
|
|
10 </form>
|
|
11
|
|
12 <form method="post" enctype="multipart/form-data">
|
|
13 or upload a file
|
|
14 <input type="file" name="file"/>
|
|
15 <input type="submit" value="Dissociate"/>
|
|
16 </form>
|
|
17
|
|
18 <form method="post">
|
|
19 or point to a URL
|
|
20 <input type="text" name="url"/>
|
|
21 <input type="submit" value="Dissociate"/>
|
|
22 </form>
|
|
23 </body>
|
|
24 </html> |