Files
php_8/forms/form_textarea.html
2022-05-09 08:28:05 +03:00

14 lines
322 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<title>HTML-форма с текстовой областью</title>
<meta charset='utf-8' />
</head>
<body>
<form method='post'>
<textarea name='name' cols='50' rows='10'></textarea><br />
<input type='submit' value='Отправить' />
</form>
</body>
</html>