21 lines
332 B
HTML
21 lines
332 B
HTML
<!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>
|