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

时间:2021-02-02 11:37:51
  <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">&nbsp; &nbsp;&nbsp;
<input type="reset" value="reset">&nbsp; &nbsp; &nbsp;
<input type="button" value="button" onclick="javascript:alert('hello world')"><br>
</form>
</table> </body>
</html>
展示:
html学习第一讲(内容html常规控件的的使用)