html标签练习
大灰狼2019-07-03 00:32:11201 <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>html标签练习作业</title>
</head>
<body>
<div style="text-align: center;"><h1>HTML标签练习</h1></div>
<div style="text-align: center;"><p>光阴似箭 岁月蹉跎 活到老学到老。</p><p>想写一篇文章发现自己没时间了。晚安!</p></div>
<hr color="aquamarine" width="60%"/>
<div style="margin: 26px; line-height: 35px;">
听说学编程要学会搜索。又听说搜索引擎又很多~ ~!<br />
但是又听说学习编程最好用的搜索引擎在我们的中国电脑上不能用了。- -!<br />
</div>
<div>
<ol>
<li>谷歌</li>
<li>百度</li>
<li>360</li>
</ol>
<span><b>我不喜欢上面这个排序列表 因为没有a链接!</b></span>
<p >嘿 有A链接又能怎么样 你点击一下能打开咋地?</p>
</div>
<div style="text-align:center">
<ui>
<li>
<a href="http://www.baidu.com">谷歌</a>
</li>
<li>
<a href="http://www.baidu.com">百度</a>
</li>
<li>
<a href="http://www.baidu.com">360</a>
</li>
</ui>
<p>感觉这个排名不太对。来来来让大家投票 看喜欢那个搜索引擎!</p>
</div>
<div id="from">
<h3>请给自己喜欢的浏览器投票</h3>
<form action="/toupiao.php" method="post">
<label for="name">姓名</label> <input type="text" id="name" value="" placeholder="请输入姓名" /><br />
性别:
<input type="radio" name="sex" id="nan" value="男"/><label for="nan">男</label>
<input type="radio" name="sex" id="nv" value="女"/><label for="nv">女</label>
<br />
<select name="ss">
<option value="谷歌" >谷歌</option>
<option value="baidu">百度</option>
<option value="360" disabled>360</option><!--360不给赞助费 不让大家喜欢你 大数据坑你-->
</select><br /><br />
<input type="submit" value="投票发言"/> <input type="reset" value="重置" />
</form>
</div>
</body>
</html>