<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<marquee height="100" direction="up" scrollamount="2">小苹果</marquee>
<p>我<mark>爱</mark>你</p>
<div style="color: red;">我爱你</div>
<form action="练习.html" method="get">
<!--文本类-->
<input type="text" name="a1" id="a1" value="" placeholder="账号" readonly="readonly"/> 账号<br />
<input type="password" name="mima" id="mima" value="" /> 密码<br />
<input type="hidden" name="yincang" id="yincang" value="" /><br />
<textarea name="wenbenkuang" rows="10" cols="10"></textarea><br />
<!--按钮类-->
<input type="button" name="a2" id="" value="注册" />不能用<br />
<input type="reset" name="" id="" value="重置" /><br />
<input type="image" src="../3.28/1.jpg" name="" id="" value="提交" /><br />
<input type="submit" name="" id="" value="提交" /><br />
<input type="file" name="" id="" value="" /><br />
<!--选择类-->
<input type="radio" name="1" id="" value="0" />男
<input type="radio" name="1" id="" value="1" />女
<br />
<input type="checkbox" name="shouji1" id="" value="pingguo" checked="checked"/>苹果
<input type="checkbox" name="shouji2" id="" value="xiaomi" />小米
<input type="checkbox" name="shouji3" id="" value="huawei" />华为
<input type="checkbox" name="shouji4" id="" value="oppo" disabled="disabled"/>oppo
<br />
<select name="下拉">
<option value="1">企业文化</option>
<option value="2">联系方式</option>
<option value="3">企业地址</option>
<option value="4">产品介绍</option>
<option value="1" selected="selected">企业背景</option>
</select>
</form>
<iframe src="练习.html" width="1000" height="1000" ></iframe>
</body>
</html>