<!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>

随机推荐

  1. Windows 10 优化

    ---恢复内容开始--- 0x00 使开始菜单,任务栏,和操作中心透明 --关闭 右下角开始菜单,选择设置,打开个性化菜单,找到颜色一栏.向下滑至最低端,使开始菜单,任务栏,和操作中心透明选项关闭 0 ...

  2. Memcahed服务异常监控脚本

    #!/bin/sh # filename: mon_mc.sh export MemcahedIp=$1export MemcahedPort=$2export NcCmd="nc $Mem ...

  3. php党 强烈推荐TIPI:深入理解PHP内核

    深入理解PHP内核(Thinking In PHP Internals) TIPI项目是一个自发项目, 项目主要关注PHP的内部实现, 以及PHP相关的方方面面, 该项目包括<深入理解PHP内核 ...

  4. SVN分支与主干

    我的理解:在svn版本库中创建两个目录,一个主干如truck,一个分支目录如branch(注:分支可以创建多个),分别在客户端中检出代码,在分支中进行bug的修复以及新模块的开发,开发完后再merge ...

  5. Ubuntu 12.04使用uginx+fastcgi-mono-server2部署asp.net 网站

    Ubuntu 12.04使用uginx+fastcgi-mono-server2部署asp.net 网站 1.安装nginx和mono-fastcgi-server2 sodu apt-get  in ...

  6. [转]React表单无法输入原因----约束性和非约束性组件

    转自:http://blog.csdn.net/lihongxun945/article/details/46730835 表单是前端非常重要的一块内容,并且往往包含了错误校验等逻辑. React对表 ...

  7. word2vec_basic.py

    ssh://sci@192.168.67.128:22/usr/bin/python3 -u /home/win_pymine_clean/feature_wifi/word2vec_basic.py ...

  8. Bootstrap学习-菜单-按钮-导航

    1.下拉菜单(基本用法) 在使用Bootstrap框架的下拉菜单时,必须调用Bootstrap框架提供的bootstrap.js文件.当然,如果你使用的是未编译版本,在js文件夹下你能找到一个名为“d ...

  9. Linux mariadb(Mysql)的主从复制架构

    mysql的主从复制架构,需要准备两台机器,并且可以通信,安装好2个mysql,保持版本一致性 mysql -v 查看数据库版本 1.准备主库的配置文件  /etc/my.cnf 写入开启主库的参数[ ...

  10. python初学者总结

    学习python首先配置好工作环境,因为不同版本之间的python是不兼容了 原创:01coding.com win7安装环境过程: 1:下载python 建议下载两个不同版本官方已给出 https: ...