zoukankan      html  css  js  c++  java
  • 3-html 缩写-地址-文字方向-引用块-题注的格式

    HTML Quotation and Citation Elements

    TagDescription
    <abbr> Defines an abbreviation or acronym
    <address> Defines contact information for the author/owner of a document
    <bdo> Defines the text direction
    <blockquote> Defines a section that is quoted from another source
    <cite> Defines the title of a work
    <q> Defines a short inline quotation
     1 <!DOCTYPE html>
     2 <html lang="zh-CN">
     3 <head>
     4     <meta charset="UTF-8">
     5     <title>HTML引用和引用元素</title>
     6 </head>
     7 
     8 <body>
     9 <h1 style="text-align: center;color: red">HTML引用和引用元素</h1>
    10 <hr>
    11 <h2 style="color: red">q elements引用</h2>
    12 <p> Browsers usually insert quotation marks around the q eleent.</p>
    13 <p>WWF's goal is to:<q>Build a future where peopke live in harmony with nature</q></p>
    14 <hr>
    15 <h2 style="color: red">blockquote elements引用块</h2>
    16 <p>blockquote defines a section that is quoted from another source.</p>
    17 <blockquote cite="http://www.baidu.com">For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. </blockquote>
    18 <hr>
    19 <h2 style="color: red">缩写abbreviations的使用</h2>
    20 <p>
    21     My name is <abbr title="houchaozhong">hcz</abbr>
    22 </p>
    23 <hr>
    24 <h2 style="color: red">地址的address的使用</h2>
    25 <address style="color: brown">
    26     Tel: 18010092511<br>
    27     Email:robohou@163.com<br>
    28     Address: Beijing.China
    29 </address>
    30 <hr>
    31 <h2 style="color: red">cite 题注的使用</h2>
    32 <p>
    33     本图源自于<cite>The Scream </cite> by Edcard Munch. Painted in 1893
    34 </p>
    35 <hr>
    36 <h2 style="color: red">bdo(Bi-Directional Override)更改文字书写的方向</h2>
    37 <p>
    38     从右往左写:<q><bdo dir = rtl> I love you very much</bdo></q><br>
    39     从左往右写:<q><bdo dir = ltr> I love you very much</bdo></q><br>
    40 </p>
    41 </body>
    42 </html>
    View Code
    厚积薄发,开物成务。 德才兼备、知行合一。 自强不息,厚德载物。
  • 相关阅读:
    Sql server 中count(1) 与 sum(1) 那个更快?
    Sql server 中count() 与 sum() 的区别
    ASP.Net Core 运行错误 Http Error 502.5 解决办法
    什么是语法糖?
    int和Integer有什么区别?如何相互转换呢?
    面向对象的基本特征有哪些方面?
    谈谈final finally finalize区别
    Overload和Override的区别
    String s=new String(“xyz”);创建了几个String Object?
    Gc是什么?为什么要有Gc?
  • 原文地址:https://www.cnblogs.com/robohou/p/8451318.html
Copyright © 2011-2022 走看看