网页——包含html标签的文本文件。
一、基本标签
注释
<!--注释内容-->
<!--
balabala...
-->
粗体(成对标签)
<b>China</b>
斜体(成对标签)
<I>love</I>
下划线(成对标签)
<u>forever</u>
颜色\字号(font为成对标签)
<font color="red" size="25">like</font>
换行
<br/>
行分割线
<hr/>
二、文本框——textbox
<input type="text" size="100" maxlength="100" placeholder="Please input your name"/>

三、复选框——checkbox
<input type="checkbox" />A.Pingpong
<br/>
<input type="checkbox" />B.Swim
<br/>
<input type="checkbox" />C.Draw
<br/>
<input type="checkbox" />D.Dance


四、单选框——radio
Check your gender please.<br/>
<input type="radio" name="gender" checked />male
<input type="radio" name="gender"/>female
<!--男性属性中的checked代表默认选项,如果没有主动点击选择,将默认为男性-->

五、文件域
<input type="file">

点击可选择文件