5-1HTML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5-1HTML相关的知识,希望对你有一定的参考价值。

Doctype

Doctype告诉浏览器使用什么样的html或xhtml规范来解析html文档

有和无的区别
  1. BackCompat:标准兼容模式未开启(或叫怪异模式[Quirks mode]、混杂模式)
  2. CSS1Compat:标准兼容模式已开启(或叫严格模式[Standards mode/Strict mode])

这个属性会被浏览器识别并使用,但是如果你的页面没有DOCTYPE的声明,那么compatMode默认就是BackCompat,这也就是恶魔的开始 -- 浏览器按照自己的方式解析渲染页面,那么,在不同的浏览器就会显示不同的样式。如果你的页面添加了那么,那么就等同于开启了标准模式,那么浏览器就得老老实实的按照W3C的标准解析渲染页面,这样一来,你的页面在所有的浏览器里显示的就都是一个样子了。

有,用什么?

Doctype告诉浏览器使用什么样的html或xhtml规范来解析html文档, dtd文件则包含了标记、attributes 、properties、约束规则。技术分享    

Meta(metadata information)

提供有关页面的元信息,例:页面编码、刷新、跳转、针对搜索引擎和更新频度的描述和关键词

  1. 页面编码(告诉浏览器是什么编码)
  2. < meta http-equiv=“content-type” content=“text/html;charset=utf-8”>

  3. 刷新和跳转
  4. < meta http-equiv=“Refresh” Content=“30″>

    < meta http-equiv=”Refresh“ Content=”5; Url=http://www.baidu.com“ />

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <!--<meta http-equiv="Refresh" Content="5"> #5秒刷新一次 -->
    <meta http-equiv="Refresh" content="5;Url=http://www.baidu.com">
    <!--跳转URL-->
    <title></title>
    </head>
    <body>
    <h1>yangmingwei</h1>
    </body>
    </html>


  5. 关键词
  6. < meta name="keywords" content="星际2,星际老男孩,专访,F91,小色,JOY" >

  7. 描述
  8. 例如:cnblogs

  9. X-UA-Compatible
  10. 微软的IE6是通过XP、Win2003等操作系统发布出来,作为占统治地位的桌面操作系统,也使得IE占据了通知地位,许多的网站开发的时候,就按照IE6的标准去开发,而IE6自身的标准也是微软公司内部定义的。到了IE7出来的时候,采用了微软公司内部标准以及部分W3C的标准,这个时候许多网站升级到IE7的时候,就比较痛苦,很多代码必须调整后,才能够正常的运行。而到了微软的IE8这个版本,基本上把微软内部自己定义的标准抛弃了,而全面的支持W3C的标准,由于基于对标准彻底的变化了,使得原先在早期IE8版本上能够访问的网站,在IE8中无法正常的访问,会出现一些排版错乱、文字重叠,显示不全等各种兼容性错误。

    与任何早期浏览器版本相比,Internet Explorer 8 对行业标准提供了更加紧密的支持。 因此,针对旧版本的浏览器设计的站点可能不会按预期显示。 为了帮助减轻任何问题,Internet Explorer 8 引入了文档兼容性的概念,从而允许您指定站点所支持的 Internet Explorer 版本。 文档兼容性在 Internet Explorer 8 中添加了新的模式;这些模式将告诉浏览器如何解释和呈现网站。 如果您的站点在 Internet Explorer 8 中无法正确显示,则可以更新该站点以支持最新的 Web 标准(首选方式),也可以强制 Internet Explorer 8 按照在旧版本的浏览器中查看站点的方式来显示内容。 通过使用 meta 元素将 X-UA-Compatible 标头添加到网页中,可以实现这一点。

    当 Internet Explorer 8 遇到未包含 X-UA-Compatible 标头的网页时,它将使用 指令来确定如何显示该网页。 如果该指令丢失或未指定基于标准的文档类型,则 Internet Explorer 8 将以 IE5 模式(Quirks 模式)显示该网页。更多

    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

Title

网页头部信息

Link

  1. css
  2. < link rel="stylesheet" type="text/css" href="css/common.css" >

  3. icon
  4. < link rel="shortcut icon" href="image/favicon.ico">

Style

在页面中写样式

例如:
< style type="text/css" > 
.bb{ 
      background-color: red; 
   } 
< /style> 

Script

  1. 引进文件
  2. < script type="text/javascript" src="http://www.googletagservices.com/tag/js/gpt.js"> </script >

  3. 写js代码
  4. < script type="text/javascript" > ... </script >

常用标签

标签一般分为两种:块级标签 和 行内标签

  • a、span、select 等
  • div、h1、p 等
  • <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">

    <title>测试</title>
    <link rel="shortcut icon" href="favicon.ico">
    </head>
    <body>
    <h1 style="background-color:red">铭威</h1>
    <a style="background-color:green;">襄阳</a>
    </body>
    </html>
  • 技术分享块级和行内的区别

各种符号

http://www.cnblogs.com/web-d/archive/2010/04/16/1713298.html

p 和 br

p表示段落,默认段落之间是有间隔的!

br 是换行

a标签

< a href="http://www.autohome.com.cn"> </a>

1、target属性,_black表示在新的页面打开

2、锚

    跳转到本页面指定

<a href="#a2">书签</a>
<div id="a1" style="height:700px;">
11111111111111111111111111111
</div>
<div id="a2" style="height:500px;">
22222222222222222222222222222
</div>

H 标签

H1

H2

H3

H4

H5
H6

select 标签

   
<select>
<option value="1">上海</option>
<option value="2">北京</option>
<option value="3" selected="selected">广州</option>
</select>

Checkbox

  

<input type="checkbox" checked="checked">

redio

 女 保密 

 女 保密

<input type="radio" name="grender">
<input type="radio" name="grender">
保密<input type="radio" name="grender">

password

 
用户名:<input type="text" value="mingwei">
密码:<input type="password">

button

 
<input type="button" value="提交">
<input type="submit" value="提交">

file

提交文件时: enctype=‘multipart/form-data‘ method=‘POST‘

textarea

 
<textarea>mingwei</textarea>
<textarea style="height:200px;width:500px;">mingwei</textarea>

label

姓名: 婚否: 
 

<label for="name2">
姓名:<input id="name2" type="text">
</label>

ul ol dl

ul

  • ul.li
  • ul.li
  • ul.li

ol

  1. ol.li
  2. ol.li
  3. ol.li

dl

河北省
邯郸
石家庄
山西省
太原
平遥

table

123
123
123
<table border="1">
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>


1
123
123
123
123
133
33
33
333
<table border="1">
<tr>
<td colspan="3">1</td>
</tr>
<tr>
<td rowspan="2">1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>2</td>
<td>3</td>
</tr>
</table>

fieldset

登录

用户名:

密码:

form 表单




 

文件:enctype=‘multipart/form-data‘ method=‘POST‘

<form>
<p>用户名:<input type="text"></p>
<p>密码:<input type="password"></p>
<input type="submit" value="提交">
<input type="button" value="按钮">
</form>

<form method="GET" action="http://www.baidu.com/s">
<input type="text" name="wd">
<input type="submit" value="submit">
</form>









































































































以上是关于5-1HTML的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数