Html 练习
<!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>
随机推荐
- .net之Ajax获取接口数据并实现循环播放
<script type="text/javascript"> var xhr; ; var res; window.onload = function () { xh ...
- oracle中避免sort操作
1.升序排列 create index ix_table1 on table1 (column1,column2); select column1,column2 from table1 order ...
- 机器学习12—FP-growth学习笔记
test12.py #-*- coding:utf-8 import sys sys.path.append("fpGrowth.py") import fpGrowth from ...
- 【数据挖掘】关联分析之Apriori(转载)
[数据挖掘]关联分析之Apriori 1.Apriori算法 如果一个事务中有X,则该事务中则很有可能有Y,写成关联规则 {X}→{Y} 将这种找出项目之间联系的方法叫做关联分析.关联分析中最有名的问 ...
- phpexcel导入xlsx文件报错xlsx is not recognised as an OLE file 怎么办
最初的做法 代码如下 1 include 'classes/PHPExcel/IOFactory.php'; 2 $inputFileName = $target; 3 $objReader = n ...
- ubuntu安装源
1.编辑sources.list文件 sudo vi /etc/apt/sources.list 添加以下安装源 #台湾源 deb http://tw.archive.ubuntu.com/ubunt ...
- KeyboardJS 开发指南 - 与 Three.js 配合使用的捕捉键盘组合键库
KeyboardJS 开发指南 - 与 Three.js 配合使用的捕捉键盘组合键库 太阳火神的漂亮人生 (http://blog.csdn.net/opengl_es) 本文遵循"署名-非 ...
- Unity合并选中物体的Mesh
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; pu ...
- 【BZOJ4548】小奇的糖果 set(链表)+树状数组
[BZOJ4548]小奇的糖果 Description 有 N 个彩色糖果在平面上.小奇想在平面上取一条水平的线段,并拾起它上方或下方的所有糖果.求出最多能够拾起多少糖果,使得获得的糖果并不包含所有的 ...
- ACboy needs your help(简单DP)
HDU 1712 Problem Description ACboy has N courses this term, and he plans to spend at most M days on ...