Added a test html file with textareas

This commit is contained in:
Lexi / Zoe 2018-10-16 22:40:06 +02:00
parent 4c501e7001
commit 20c4aaa1d7
1 changed files with 20 additions and 0 deletions

20
_test/textarea.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Testpage with textareas</title>
</head>
<body>
<p>Some text...</p>
<textarea id="test" style="width: 400px; height: 140px;">First text area</textarea>
<div>
<p>More text...</p>
<textarea id="test2" style="width: 400px; height: 140px;">Second text area</textarea>
</div>
</body>
</html>