跳转案例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>跳转案例</title>
</head>
<body>
<a href="https://uland.taobao.com/" target="qq">淘宝</a>
<iframe name="qq" farmeborde="0"></iframe>
</body>
</html>
表单案例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表单</title>
</head>
<body>
<h3>青春不常在,抓紧谈恋爱</h3>
性别 <input type="radio" name="xingbie" value="nan">男
<input type="radio" name="xingbie" value="nv">女<br/>
生日 <select name="--请选择年份--" id="">
<option value="--请选择月份--">--请选择月份--</option>
</select>
<select name="--请选择月份--" id="">
<option value="--请选择月份--">--请选择月份--</option>
v </select>
<select name="--请选择日期--" id="">
<option value="--请选择日期--">--请选择日期--</option>
</select><br/>
所在地区 <input type="text" name="所在地区" value="北京思密达"><br/>
婚姻状况 <input type="radio" name="hunyin" value="weihun">未婚
<input type="radio" name="hunyin" value="yihun">已婚
<input type="radio" name="hunyin" value="lihun">离婚<br/>
学历 <input type="text" name="xueli" value="幼儿园"><br/>
喜欢的类型 <label><input type="checkbox" name="wumei">妩媚的</label>
<label><input type="checkbox" name="keai">可爱的</label>
<label><input type="checkbox" name="xiaoxianrou">小鲜肉</label>
<label><input type="checkbox" name="laolarou">老腊肉</label>
<label><input type="checkbox" name="douxihuan">都喜欢</label><br/>
自我介绍 <textarea cols="6" rows="3">自我介绍</textarea><br/>
<label><input type="checkbox" name="tongyi" id="tongyizhuce">我同意注册条款和会员加入标准</label> <br/>
<a href="#">我是会员,立即登录</a><br/>
<h2>我承诺</h2>
<ul>
<li>年满18岁、单身</li>
<li>抱着严肃的态度</li>
<li>真诚寻找另一半</li>
</ul>
</body>
</html>