<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>这是我的标题</title> <meta http-equiv="refresh" content="3,url=http://www.baidu.com" /> </head> <body> <a name="top"> top</a> <font size="+4" color="red">第一个html</font> <h1>Test1</h1> <a href="http://www.baidu.com" target="_blank" title="xxxx">百度网站</a> <a href="mailto:xiangjie55@qq.com">联系我们</a> <br /> 用户名:<input type="text" name="user" /> <br /> 密 码:<input type="password" name="password" /><br /> 性 别:<input type="radio" name="sex" />男<input type="radio" name="sex" />女 <br /> 技 术:<input type="checkbox" name="tech" />Java <input type="checkbox" name="tech" />Html <input type="checkbox" name="tech" />Xml <br /> 传文件:<input type="file" name="upload" value="upload" /> <br /> 按 键: <input type="button" name="bt1" value="一个按键" /> <br /> Hide : <input type="hidden" name="id" value="后台计算数据,不让用户知道" /> <br /> Image: <input type="image" src="../image/download.png" /> 提 交:<input type="submit" name="submit" value="submit"/> 重 置:<input type="reset" /> <br /> <select name="country"> <option value="none">--选择国家--</option> <option value="china">中国</option> <option value="usa">美国</option> </select> <br /> <textarea cols="30" rows="10">输入文字</textarea> <br /> <pre> class Test { public static void main(String[] args) { System.out.println("hello Java"); } } </pre> <marquee direction="down" behavior="alternate"> 原来会飞 </marquee> <table border="1" bordercolor="#CC0000" width="80%" cellspacing="0" cellpadding="3"> <caption> 表格名字</caption> <thead> <tr> <th colspan="2">单元格1</th> <th>单元格2</th> </tr> <tr> <td>单元格3</td> <td>单元格4</td> </tr> </thead> <tr> <td>单元格5</td> <td>单元格6</td> </tr> </table> <dl> <dt>1.游戏名称</dt> <dd> <ol> <li>dnf</li> <li>lol</li> <li>wow</li> </ol> </dd> <dt>2.游戏介绍</dt> <dd> <ol> <li>dnfxxxx</li> <li>lolxxxxx</li> <li>wowxxxxxxx</li> </ol> </dd> </dl> <hr color="#CC0000" size="5" /> <img src="../image/11695724_1337587127836_800x600.jpg" alt="图片说明" width="400" height="300" border="10" usemap="#Map" /> <map name="Map" id="Map"><area shape="rect" coords="103,111,276,255" href="1.html" /> </map> <a href="#top"> 返回顶部</a> </body> </html>