html简单网页1

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>网页表单</title>
</head>
<body>
 <form action="1.php" method="post">
 <fieldset>
 <legend>网页表单</legend>
  your name:&nbsp;&nbsp;<input type="text" maxlength="6"><br><br>
  your e-mail:&nbsp;<input type="text" ><br><br>
  s&nbsp;u&nbsp;b&nbsp;j&nbsp;e&nbsp;c&nbsp;t:&nbsp;<input type="text"><br><br>
  message:&nbsp;&nbsp;&nbsp;<textarea cols="30" rows="10"></textarea><br><br>
  <input type="image" src="image/按钮.jpg"><br><br>
  <!-- <input type="submit"> -->
 </fieldset>
 </form>
</body>
</html>

自学者,大佬们多多指教

原文地址:https://www.cnblogs.com/twinkle-/p/8954319.html