html案例

 

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>饭桶教程(kuaikuaixuan.com)</title> 
</head>
<body>
<form action="demo-form.php">
First name: <input type="text" name="FirstName" value="Mickey"><br>
Last name: <input type="text" name="LastName" value="Mouse"><br>
<input type="submit" value="提交">
</form>
<p>点击"提交"按钮,表单数据将被发送到服务器上的“demo-form.php”。</p>
</body>
</html>