<!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. leetcode笔记:Add Binary

    一.题目描写叙述 Given two binary strings, return their sum (also a binary string). For example, a = "1 ...

  2. IDC机房带宽突然暴涨问题!

    IDC机房带宽突然暴涨问题! 1[提出问题] [实际案例一] 凌晨3:00点某公司(网站业务)的一个IDC机房带宽流量突然从平时高峰期150M猛增至1000M,如下图: 该故障的影响:直接导致数百台服 ...

  3. 07 在Windows下编译Memcached

    一:windows下编译Memcached (1)下载地址dll:http://down.51cto.com/data/442606 (2)在php下输出 echo phpinfo():查看php的版 ...

  4. Android Handler警告,SimpleDateFormat警告

    1:Handler// This Handler class should be static or leaks might occur: IncomingHandler    @SuppressLi ...

  5. ps -ef 和 aux 区别

    Linux中的ps命令是Process Status的缩写.ps命令用来列出系统中当前运行的那些进程.ps命令列出的是当前那些进程的快照,就是执行ps命令的那个时刻的那些进程,如果想要动态的显示进程信 ...

  6. linux 改动时间和日期date

    查看日期和时间 date 改动日期 date -s 月/日/年 date -s 08/15/2015 改动时间 date -s 09:29:33 写入CMOS sudo clock -w 利用ssh同 ...

  7. Git客户端搭建环境(Windows系统)的使用

    本文环境: 操作系统:Windows XP SP3 Git客户端:TortoiseGit-1.8.8.0-32bit 一.安装Git客户端 全部安装均采用默认! 1. 安装支撑软件 msysgit:  ...

  8. HYSBZ - 1799 self 同类分布

    self 同类分布 HYSBZ - 1799 给出a,b,求出[a,b]中各位数字之和能整除原数的数的个数.Sample Input 10 19 Sample Output 3 Hint [约束条件] ...

  9. is assembler instruction and machine instuction atomic

    1 assembler instruction depends,有的汇编指令会被assemble成多条机器指令. 2 机器指令 depends,有的机器指令也不是atomic的. 所以,不要希望在单条 ...

  10. What happens when we continue stacking deeper layers on a “plain” convolutional neural network?

    http://cs231n.stanford.edu/slides/2017/cs231n_2017_lecture9.pdf The deeper model performs worse, but ...