html基本知識
表格table:
tr 行
border="1"
align="center"
td 列
超鏈接:
多選 checkbox
單選 radio 要在一個組裡面才可以單選 看name
<input type="text">
選項:
學歷:<select>
<option>大學</option>
<option>中學</option>
</select>
文件上傳:<input type="file">
按鈕:<input type="button" value="hello word" onclick="javascript:alert('hello world');" >
Html代碼
<html>
<head>
<title> hello </title>
</head>
<body >
<p><h1><font color="red">這是網頁顯示的內容</font></h1>
[url=http://baidu.com]this is BaiDu[/url]
<!--
<table border="1" align="center" width="80%">
<tr>
<td>aa </td>
</tr>
<tr>
<td align="center">aa</td>
</tr>
-->
<form>
please input:<input type="text">
<br>
please input:<input >
<br>
please input password:<input type="password">
<br>
興趣:學習<input type="checkbox">
旅游<input type="checkbox">
<br>
性別:男<input type="radio" name="qender">
女<input type="radio" name="qender">
<br>
學歷:<select>
<option>大學</option>
<option>中學</option>
</select>
<br>
評論:<textarea>
hello
</textarea>
<br>
文件上傳:<input type="file">
<br>
<br>
<input type="submit" value="submit"> <input type="reset" value="reset">
 <input type="button" value="hello word" onclick="javascript:alert('hello world');" >
圖片:<img src="http://www.BkJia.com/uploadfile/2011/0920/20110920030958379.png">
</form>
</table>
</body>
作者“smartan”