我知道(或找到)可能在HTML标记内的内容:
这里有哪些其他标签有效且有用?
我真的不关心几年前热门的一些模糊标签,或者只关注一些浏览器。相反,我很好奇在所有浏览器中都不是那么有用的东西(或者可以被黑客攻击所有浏览器)。
答案 0 :(得分:5)
查看官方文档html 4.0.1和html 5您需要的所有信息都在那里
答案 1 :(得分:0)
答案 2 :(得分:0)
在所有浏览器中禁用缓存
<meta http-equiv="cache-control" content="max-age=0" /> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" /> <meta http-equiv="pragma" content="no-cache" />
在搜索引擎中获取索引
<meta name="robots" content="index, follow" /> <meta name="googlebot" content="index, follow" /> <meta name="robots" content="ALL" />
确定不同设备的视口以运行响应式css
<meta name="viewport" content="width=device-width, initial-scale=1.0">