2021-11-11
作者:互联网
首先,先来看一看要做的表单的样式
接下来进行相应的代码编写
/*部分代码*/
<h1><b>我的表单</b></h1>
<a1>账号:<input type="text" name="name1"></a1><br><br>
<a2>密码:<input type="text" name="password"></a2><br><br>
<a3>爱好:<input type="checkbox" name="vehicle" value="tiyu">体育
<input type="checkbox" name="vehicle" value="changge">唱歌
<input type="checkbox" name="vehicle" value="yuedu">阅读
<input type="checkbox" name="vehicle" value="lvyou">旅游</a3><br><br>
<a4>性别:<input id="man" type="radio" checked="checked" name="1" />男<input id="woman" type="radio" name="1"/>女</a4><br><br>
<a5>自我介绍:<input placeholder="这里是自我介绍" style="width:400px; height:150px;"></input> </a5><br><br>
<a6>地址:<select><option value="beijing">北京</option>
<option value="tianjing">天津</option>
<option value="shijiazhuang">石家庄</option>
</select></a6><br><br>
<a7><button>提交</button> <button>重置按钮</button></a7>
该代码所实现的效果
如有不足或者错误,欢迎私信或讨论指正
标签:11,私信,代码,表单,指正,2021 来源: https://blog.csdn.net/qq_53805464/article/details/121265950