jsp web html基础知识

来源:岁月联盟 编辑:exp 时间:2011-09-20

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"> 
    &nbsp<input type="button" value="hello word" onclick="javascript:alert('hello world');" > 
    图片:<img src="http://www.2cto.com/uploadfile/2011/0920/20110920030958379.png"> 
     
</form> 
 
 
</table> 
</body> 

作者“smartan”