首页 > 网站 > WEB开发 > 正文

HTML知识点记录

2024-04-27 14:27:49
字体:
来源:转载
供稿:网友
HTML知识点记录

 

KeyWords: meta; http-equiv; map; table; form; 字符实体

 

HTML基础

<meta> 标签

meta标签描述了一些基本的元数据。 

12345678

 

为搜索引擎定义关键词:      <meta name="keywords" content="HTML, CSSxml, XHTML, javaScript">为网页定义描述内容:      <meta name="description" content="Free Web tutorials on HTML and CSS">定义网页作者:      <meta name="author" content="Hege Refsnes">每30秒中刷新当前页面:      <meta http-equiv="refresh" content="30">

 http-equiv属性

 

12345678910111213141516171819202122232425262728293031323334353637

 

http-equiv顾名思义,相当于http的文件头作用,它可以向浏览器传回一些有用的信息,以帮助正确和精确地显示网页内容。meta标签的http-equiv属性语法格式是:<meta http-equiv="参数" content="参数变量值"> ;其中http-equiv属性主要有以下几种参数:A、Expires(期限)说明:可以用于设定网页的到期时间。一旦网页过期,必须到服务器上重新传输。用法:<meta http-equiv="expires" content="Fri,12 Jan 2001 18:18:18 GMT">注意:必须使用GMT的时间格式。B、PRagma(cache模式)说明:禁止浏览器从本地计算机的缓存中访问页面内容。用法:<meta http-equiv="Pragma" content="no-cache">注意:这样设定,访问者将无法脱机浏览。C、Refresh(刷新)说明:自动刷新并转到新页面。用法:<meta http-equiv="Refresh" content="2;URL">;注意:其中的2是指停留2秒钟后自动刷新到URL网址。D、Set-Cookie(cookie设定)说明:如果网页过期,那么存盘的cookie将被删除。用法:<meta http-equiv="Set-Cookie" content="cookievalue=xxx; expires=Friday,12-Jan-2001 18:18:18 GMT; path=/">注意:必须使用GMT的时间格式。E、Window-target(显示窗口的设定)说明:强制页面在当前窗口以独立页面显示。用法:<meta http-equiv="Window-target" content="_top">注意:用来防止别人在框架里调用自己的页面。F、content-Type(显示字符集的设定)说明:设定页面使用的字符集。用法:<meta http-equiv="content-Type" content="text/html; charset=gb2312">G、content-Language(显示语言的设定)用法:<meta http-equiv="Content-Language" content="zh-cn" />

 

<map>标签

标签定义及使用说明

<map> 标签用于客户端图像映射。图像映射指带有可点击区域的一幅图像。

<img>中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器)

所以我们应同时向 <map> 添加 id 和 name 属性。其中name属性是必须的。

  area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域。

实例: 

1234567

 

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap">   <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">   <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">   <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus"> </map> 

 

Coords属性表示坐标

<table>标签

Cellspacing&cellpadding用法:

 HTML Code 

1234567891011121314

 

<table border="1" cellspacing="10" cellpadding="10"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> 

 

HTML 表单和输入

 HTML Code 

1234567891011121314151617181920212223

 

<form> First name: <input type="text" name="firstname"><br> Last name: <input type="text" name="lastname"> </form>  <hr/> <form> Password: <input type="password" name="pwd"> </form>  <hr/> <form> <input type="radio" name="sex" value="male">Male<br> <input type="radio" name="sex" value="female">Female </form>  <hr/> <form> <input type="checkbox" name="vehicle" value="Bike">I have a bike<br> <input type="checkbox" name="vehicle" value="Car">I have a car  </form>  <hr/> <form name="input" action="html_form_action.php" method="get"> Username: <input type="text" name="user"> <input type="submit" value="Submit"> </form> 

 

HTML字符实体

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表