Zen HTML Elements 使用zen coding的朋友可以收藏下

2020-04-17 08:29:39易采站长站整理

</head> 
<body> 
 
</body> 
</html>
html:5
<!DOCTYPE HTML> 
<html lang="ru-RU"> 
<head> 
    <title></title> 
    <meta charset="UTF-8"> 
</head> 
<body> 
 
</body> 
</html>

Document Metadata¶
head
<head></head>

title
<title></title>

base
<base href="">

link
<link>

link:css
<link rel="stylesheet" type="text/css" href="style.css" media="all">

link:print
<link rel="stylesheet" type="text/css" href="print.css" media="print">

link:favicon
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">

link:touch
<link rel="apple-touch-icon" href="favicon.png">

link:rss
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml">

link:atom
<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml">

meta
<meta>

meta:utf
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

meta:win
<meta http-equiv="Content-Type" content="text/html;charset=Win-1251">

meta:compat
<meta http-equiv="X-UA-Compatible" content="IE=7">

style
<style type="text/css"></style>

Scripting¶
script
<script type="text/javascript"></script>