HTML – 现代网站上包含哪些元标记?

前端之家收集整理的这篇文章主要介绍了HTML – 现代网站上包含哪些元标记?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目前我在每个页面上的所有内容都是< Meta http-equiv =“content-type”content =“text / html; charset = UTF-8”/>.人们是否仍然包含关键字,描述和作者等元标记?如果是这样,他们应该在每个 HTML页面上还是只在主页上?

解决方法

嗯,你挑衅应该有Meta charset
<Meta charset="utf-8">

不需要http-equiv,因为它表示HTTP头等效.但是对于Web,通过Web服务器(可能是apache)提供的Content-Type HTTP头应该这样做.您可以通过.htaccess或使用PHP header()函数覆盖服务器默认值.

包含也不是一个坏主意

<Meta name="description" content="">
<Meta name="author" content="">

Paul Irish的html5锅炉板也建议使用:

<!-- Always force latest IE rendering engine (even in intranet) this if you use the .htaccess -->
<Meta http-equiv="X-UA-Compatible" content="IE=edge">

http://html5boilerplate.com/docs/#The-markup★make-sure-the-latest-version-of-ie-is-used

<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<Meta name="viewport" content="width=device-width,initial-scale=1.0">

http://html5boilerplate.com/docs/#The-markup★mobile-viewport–creating-a-mobile-version

原文链接:https://www.f2er.com/html/226989.html

猜你在找的HTML相关文章