您的位置:首页 > Web前端 > HTML

html学习第一讲(内容html常规控件的的使用)

2014-05-03 19:45 363 查看
<html>
<head>
<title> 这是网页的标题</title>
</head>

<body>
<h2><font color ="blue"> 这是网页的内容!</font></h2>

<a href="http://www.cnblogs.com/gongxijun">这是一个连接</a>

<table  border="1"    align="center" width="80%">

<tr>
<th>aa</th>
<th>bb</th>
<th>cc</th>
</t\r>

<tr>
<td  align="center" ><b>dd</b></td>
<td  align="center" ><b>ee</b></td>
<td  align="center"><b>ff</b></td>
</tr>

<form>
username: <input  type ="text"><br>
password: <input type="password"> <br>
兴趣: 学习<input type="checkbox" >
旅游<input type="checkbox">
睡觉<input type="checkbox"><br>
性别: 男<input type="radio" name="gender">
女<input type="radio" name="gender"><br>
学历:  <select>
<option>小学</option>
<opti    on>初中</option>
<option>高中</option>
<option>大学</option>
</select><br>
评论:  <textarea>

</textarea><br>
图片: <img src="https://www.google.com.hk/images/srpr/logo11w.png"><br>

文件上传: <input type ="file"><br>
<input type="submit"  value="submit">    
<input type="reset"   value="reset">     
<input type="button"  value="button" onclick="javascript:alert('hello world')"><br>
</form>
</table>

</body>
</html>


View Code
展示:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: