提交

时间:2018-04-05 19:20:45

标签: html forms html-table output display

我刚刚开始为学校学习HTML。 现在我必须建立一个带有表单的简单网站。

我是用表格式做的。 问题是我需要在使用提交按钮后在显示器上显示表的输入。

我搜索了4个多小时,但没有找到任何解决方案。

有人可以帮我吗?

在我的html代码下面:

<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Salsa</title>
  <link href="index.css" rel="stylesheet" type="text/css" />
</head>


<body>
  <h1>Salsa Events</h1>
  <p>Submit for your newsletter.<br>
  </p>

<form action="" method="get">

<center><table border="2">
  <tr>
    <td>First name</td>
    <td><input type="text" name="first name" required></td>
  </tr>
  <tr>
    <td>Family name</td>
    <td><input type="text" name="family name" required></td>
  </tr>
  <tr>
    <td>E-mail</td>
    <td><input type="email" name="e-mail" required></td>
  </tr>
  <tr>
    <td>Date of birth</td>
    <td><input type="date" name="date of birth" required></td>
  </tr>
  <tr>
    <td>Recieve newsletter</td>
    <td><input type="checkbox" name="is_checkbox" checked></td>
  </tr>
  <tr>
    <td colspan="2"><input type="submit" value="Send"> </td>
  </tr>
</table></center>
</form>

</body>
</html>

0 个答案:

没有答案