案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<form action="/example/demo_form.aspx" method="get">
5
  
6
  <p>Name:<input type="text" name="email" /></p>
7
8
  <p>Country:<input type="text" name="fname" 
9
  value="China" readonly="readonly" /></p>
10
  
11
  <input type="submit" value="Submit" />
12
</form>
13
14
<p>请在提交按钮上单击,输入会发送到服务器上名为 "demo_form.aspx" 的页面。</p>
15
16
</body>
17
</html>