星空网 > 软件开发 > 网页设计

【05】emmet系列之各种缩写

各种缩写

 

缩写:!

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body></body>
  8. </html>

 

缩写:a

  1. <a href=""></a>

 

缩写:a:link

  1. <a href="http://"></a>

 

缩写:a:mail

  1. <a href="mailto:"></a>

 

缩写:abbr

  1. <abbr title=""></abbr>

 

缩写:acronym

  1. <acronym title=""></acronym>

 

缩写:base

  1. <base href=""/>

 

缩写:basefont

  1. <basefont />

 

缩写:br

  1. <br />

 

缩写:frame

  1. <frame />

 

缩写:hr

  1. <hr />

 

缩写:bdo

  1. <bdo dir=""></bdo>

 

缩写:bdo:r

  1. <bdo dir="rtl"></bdo>

 

缩写:bdo:l

  1. <bdo dir="ltr"></bdo>

 

缩写:col

  1. <col />

 

缩写:link

  1. <link rel="stylesheet" href=""/>

 

缩写:link:css

  1. <link rel="stylesheet" href="style.css"/>

 

缩写:link:print

  1. <link rel="stylesheet" href="print.css" media="print"/>

 

缩写:link:favicon

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

 

缩写:link:touch

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

 

缩写:link:rss

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

 

缩写:link:atom

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

 

缩写:meta

  1. <meta />

 

缩写:meta:utf

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

 

缩写:meta:win

  1. <meta http-equiv="Content-Type" content="text/html;charset=windows-1251"/>

 

缩写:meta:vp

  1. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>

 

缩写:meta:compat

  1. <meta http-equiv="X-UA-Compatible" content="IE=7"/>

 

缩写:style

  1. <style></style>

 

缩写:script

  1. <script></script>

 

缩写:script:src

  1. <script src='/images/loading.gif' data-original=""></script>

 

缩写:img

  1. <img src='/images/loading.gif' data-original="" />

 

缩写:iframe

  1. <iframe src='/images/loading.gif' data-original="" frameborder="0"></iframe>

 

缩写:embed

  1. <embed src='/images/loading.gif' data-original="" type=""/>

 

缩写:object

  1. <object data="" type=""></object>

 

缩写:param

  1. <param name="" value=""/>

 

缩写:map

  1. <map name=""></map>

 

缩写:area

  1. <area shape="" coords="" href="" />

 

缩写:area:d

  1. <area shape="default" href="" />

 

缩写:area:c

  1. <area shape="circle" coords="" href="" />

 

缩写:area:r

  1. <area shape="rect" coords="" href="" />

 

缩写:area:p

  1. <area shape="poly" coords="" href="" />

 

缩写:form

  1. <form action=""></form>

 

缩写:form:get

  1. <form action="" method="get"></form>

 

缩写:form:post

  1. <form action="" method="post"></form>

 

缩写:label

  1. <label for=""></label>

 

缩写:input

  1. <input type="text"/>

 

缩写:inp

  1. <input type="text" name="" id=""/>

 

缩写:input:hidden

别名:input[type=hidden name]

  1. <input type="hidden" name=""/>

 

缩写:input:h

别名:input:hidden

  1. <input type="hidden" name=""/>

 

缩写:input:text, input:t

别名:inp

  1. <input type="text" name="" id=""/>

 

缩写:input:search

别名:inp[type=search]

  1. <input type="search" name="" id=""/>

 

缩写:input:email

别名:inp[type=email]

  1. <input type="email" name="" id=""/>

 

缩写:input:url

别名:inp[type=url]

  1. <input type="url" name="" id=""/>

 

缩写:input:password

别名:inp[type=password]

  1. <input type="password" name="" id=""/>

 

缩写:input:p

别名:input:password

  1. <input type="password" name="" id=""/>

 

缩写:input:datetime

别名:inp[type=datetime]

  1. <input type="datetime" name="" id=""/>

 

缩写:input:date

别名:inp[type=date]

  1. <input type="date" name="" id=""/>

 

缩写:input:datetime-local

别名:inp[type=datetime-local]

  1. <input type="datetime-local" name="" id=""/>

 

缩写:input:month

别名:inp[type=month]

  1. <input type="month" name="" id=""/>

 

缩写:input:week

别名:inp[type=week]

  1. <input type="week" name="" id=""/>

 

缩写:input:time

别名:inp[type=time]

  1. <input type="time" name="" id=""/>

 

缩写:input:number

别名:inp[type=number]

  1. <input type="number" name="" id=""/>

 

缩写:input:color

别名:inp[type=color]

  1. <input type="color" name="" id=""/>

 

缩写:input:checkbox

别名:inp[type=checkbox]

  1. <input type="checkbox" name="" id=""/>

 

缩写:input:c

别名:input:checkbox

  1. <input type="checkbox" name="" id=""/>

 

缩写:input:radio

别名:inp[type=radio]

  1. <input type="radio" name="" id=""/>

 

缩写:input:r

别名:input:radio

  1. <input type="radio" name="" id=""/>

 

缩写:input:range

别名:inp[type=range]

  1. <input type="range" name="" id=""/>

 

缩写:input:file

别名:inp[type=file]

  1. <input type="file" name="" id=""/>

 

缩写:input:f

别名:input:file

  1. <input type="file" name="" id=""/>

 

缩写:input:submit

  1. <input type="submit" value=""/>

 

缩写:input:s

别名:input:submit

  1. <input type="submit" value=""/>

 

缩写:input:image

  1. <input type="image" src='/images/loading.gif' data-original="" />

 

缩写:input:i

别名:input:image

  1. <input type="image" src='/images/loading.gif' data-original="" />

 

缩写:input:button

  1. <input type="button" value=""/>

 

缩写:input:b

别名:input:button

  1. <input type="button" value=""/>

 

缩写:isindex

  1. <isindex />

 

缩写:input:reset

别名:input:button[type=reset]

  1. <input type="reset" value=""/>

 

缩写:select

  1. <select name="" id=""></select>

 

缩写:option

  1. <option value=""></option>

 

缩写:textarea

  1. <textarea name="" id="" cols="30" rows="10"></textarea>

 

缩写:menu:context

别名:menu[type=context]>

  1. <menu type="context"></menu>

 

缩写:menu:c

别名:menu:context

  1. <menu type="context"></menu>

 

缩写:menu:toolbar

别名:menu[type=toolbar]>

  1. <menu type="toolbar"></menu>

 

缩写:menu:t

别名:menu:toolbar

  1. <menu type="toolbar"></menu>

 

缩写:video

  1. <video src='/images/loading.gif' data-original=""></video>

 

缩写:audio

  1. <audio src='/images/loading.gif' data-original=""></audio>

 

缩写:html:

  1. <html ="http://www.w3.org/1999/xhtml"></html>

 

缩写:keygen

  1. <keygen />

 

缩写:command

  1. <command />

 

缩写:bq

别名:blockquote

  1. <blockquote></blockquote>

 

缩写:acr

别名:acronym

  1. <acronym title=""></acronym>

 

缩写:fig

别名:figure

  1. <figure></figure>

 

缩写:figc

别名:figcaption

  1. <figcaption></figcaption>

 

缩写:ifr

别名:iframe

  1. <iframe src='/images/loading.gif' data-original="" frameborder="0"></iframe>

 

缩写:emb

别名:embed

  1. <embed src='/images/loading.gif' data-original="" type=""/>

 

缩写:obj

别名:object

  1. <object data="" type=""></object>

 

缩写:src

别名:source

  1. <source></source>

 

缩写:cap

别名:caption

  1. <caption></caption>

 

缩写:colg

别名:colgroup

  1. <colgroup></colgroup>

 

缩写:fst, fset

别名:fieldset

  1. <fieldset></fieldset>

 

缩写:btn

别名:button

  1. <button></button>

 

缩写:btn:b

别名:button[type=button]

  1. <button type="button"></button>

 

缩写:btn:r

别名:button[type=reset]

  1. <button type="reset"></button>

 

缩写:btn:s

别名:button[type=submit]

  1. <button type="submit"></button>

 



 






原标题:【05】emmet系列之各种缩写

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

优化关键词后,排名反而下降?亚马逊客户经理:别想太多!:https://www.kjdsnews.com/a/774448.html
Pinterest Predicts揭秘2022爆品趋势:https://www.kjdsnews.com/a/774449.html
又一国内大牌布局独立站!目前亏损,将增加投资:https://www.kjdsnews.com/a/774450.html
要收费了!TikTok付费订阅即将上线!:https://www.kjdsnews.com/a/774451.html
亚马逊A+页面指南:新品牌故事板块怎么做:https://www.kjdsnews.com/a/774452.html
OnBuy是什么平台?OnBuy平台开店怎么样:https://www.kjdsnews.com/a/774453.html
船底顶攻略(船底顶最详细攻略):https://www.vstour.cn/a/411239.html
川藏线自驾游要怎么走才比较划算呢?:https://www.vstour.cn/a/411240.html
相关文章
我的浏览记录
最新相关资讯
海外公司注册 | 跨境电商服务平台 | 深圳旅行社 | 东南亚物流