zltzlt 发表于 2020-1-26 14:00:51

一个简单的表单

效果:



代码:

<!DOCTYPE html>
<html>
    <head>
      <title>一个简单的表单</title>
    </head>
    <body>
      <form
            action="https://ilovefishc.com/html5/html5/lesson15/test1/welcome.php"
            method="post"
      >
            姓名:<input type="text" name="name" /><br /><br />
            邮箱:<input type="text" name="email" /><br /><br />
            <button type="submit">提交</button>
      </form>
    </body>
</html>
页: [1]
查看完整版本: 一个简单的表单