|
CS479/579 - Web Programming II
|
Displaying ./code/HTML/form.html
<!-- A comment -->
<!DOCTYPE html>
<html>
<head>
<title> </title>
<meta charset='utf-8'>
<style>
input, textarea { width: 200px; }
</style>
</head>
<body>
<form method='POST' action='submit.php'>
<table>
<tr>
<td> Name: <td> <input type='text' name='name' size=20>
<tr>
<td> Subject: <td> <input type='text' name='subject' size=20>
<tr>
<td> Message: <td> <textarea name='message' cols=20 rows=10></textarea>
<tr>
<td> <td> <input type='submit' value='Submit it!'>
</table>
</form>
</body>
</html>
|