<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Input</title>
</head>
<body>

<form action=recv.jsp method=get>
<table border=1>

<tr>
<th colspan=2> Input Message
</tr>

<tr>
<td> Name:
<td> <input type=text name=name placeholder="이름을 입력하세요.">
</tr>

<tr>
<td colspan=2>
<textarea placeholder="메시지을 입력하세요." name=text rows=5 cols=30></textarea>
</tr>

<tr>
<td colspan=2 align = center> <input type=submit id=ok value="OK">
</tr>

</table>
</form>

</body>
</html>

 

+ Recent posts