表单控件
表单的基本结构: <form action=""></form>
表单基本控件实践
实践一:文本框
<form action="">
<p>请输入你的姓名:<input type="text"></p>
<p>报考院校:<input type="text" value="研鱼大学" disabled></p>
<p>毕业学校:<input type="text" placeholder="请输入真实的毕业学校哦"></p>
</form>
实践二:单选框
<form action="">
<p>
<!--
type的属性前后不要有空格,
比如:type=" radio",这样会默认成text
-->
性别:
<label for="">
<input type="radio" name="sex" id="" value="男" checked>男
</label>
<label for="">
<input type="radio" name="sex" value="女">女
</label>
</p>
</form>
<form action="">
<p>
血型:
<input type="radio" name="bloodtype" id="" value="A">A
<input type="radio" name="bloodtype" id="" value="B">B
<input type="radio" name="bloodtype" id="" value="C">C
<input type="radio" name="bloodtype" id="" value="O">O
<input type="radio" name="bloodtype" id="" value="AB">AB
</p>
</form>
实践三:复选框
<form action="">
<p>
爱好:
<label for="">
<input type="checkbox" name="hobby" id="" value="足球">足球
<input type="checkbox" name="hobby" id="" value