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>
随机推荐
- maven的一些基础命令
1.显示当前构建的实际pom,包括活动的Profile mvn help:effective-pom 2.打印出项目的世界settings,包含从全局的settings和用户级别settings继承的 ...
- 复习mybatis框架(一)----映射文件
参考博主的文章,尊重原创:https://blog.csdn.net/qq_35246620/article/details/54837618 一.给出映射文件 Mapper.xml 的总结: ① 设 ...
- lua table库
整理自:http://www.cnblogs.com/whiteyun/archive/2009/08/10/1543139.html 1.table.concat(table, sep, st ...
- 解决UISlider滑块不灵敏
由于UI给的thumbImage图片过小,默认UISlider开始拖动的手势范围只有thumbImage的大小之内. 为了解决这个问题需要创建一个子类继承于UISlider.重写其中的方法: - (C ...
- centos 7 安装 mail
yum install -y sendmail 将下面内容粘贴到/etc/mail.rc中 set ssl-verify=ignore set nss-config-dir=/root/.certs ...
- linux 中vim学习与总结
平常使用vim总是忘记快捷键,在这里做一个总结一下比较常用的快捷把,省的每次都要去查. h : 向左移动一个字符(←) j : 向上移动一个字符(↑) k : (↓) l : (→) ctrl+f : ...
- 【ubantu】在Ubuntu上安装tar.gz,tar.bz以及deb文件(例:libreoffice安装)
参考文章: https://blog.csdn.net/zhuquan945/article/details/52986712 ==================================== ...
- python实现身份证识别
github: 人脸联合语音身份认证:https://github.com/tsstss123/faceUnionVoiceRecognition 身份证识别简易版:https://github.co ...
- 浅谈<持续集成、持续交付、持续部署>(二)
集成是指软件个人研发的部分向软件整体部分交付,以便尽早发现个人开发部分的问题:部署是代码尽快向可运行的开发/测试节交付,以便尽早测试:交付是指研发尽快向客户交付,以便尽早发现生产环境中存在的问题.如果 ...
- 【BZOJ4928】第二题 树hash+倍增
[BZOJ4928]第二题 Description 对于一棵有根树,定义一个点u的k-子树为u的子树中距离u不超过k的部分. 注意,假如u的子树中不存在距离u为k的点,则u的k-子树是不存在的. 定义 ...