📜  HTML |短语标签

📅  最后修改于: 2021-08-29 12:45:27             🧑  作者: Mango

短语标签:在 HTML 中,短语标签用于表示一段文本的结构含义。例如,abbr 标签表示该短语包含缩写词。短语标签的一些示例是 abbr、strong、mark、. . .等等。
强调文本: em 标签用于强调文本,该标签在浏览器中显示斜体。它只是意味着在 em标签内写入的任何内容都显示为强调文本。
句法:

 Text Content 

例子:

html


    
        Emphasized Text
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks emphasized tag

      


html


    
        Text Abbreviation
        
    
    
        
GeeksforGeeks
         

GFG                                abbreviation tag

      


html


    
        Acronym tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks acronym tag

      


html


    
        Text decoration tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks text decoration tag

           

GeeksforGeeks text                         decoration tag

      


html


    
        Quotation tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks quotation tag

      


html


    
        Mark tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks mark tag

      


html


    
        strong tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks strong tag

              


html


    
        Blockquote tag
        
    
    
        
GeeksforGeeks
        
GeeksforGeeks is a computer science         portal where you can learn programming. It contains         well written, well thought and well explained         computer science and programming articles, quizzes         and ...
            


html


    
        code tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks Programming code tag

      


html


    
        Program output tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks program output tag

      


html


    
        Address tag
        
    
    
        
GeeksforGeeks
        
GeeksforGeeks office,                  sector-142, Noida,                  India
    


输出:

强调标签

文本缩写:要缩写 HTML 中的文本,请使用abbr标签。在开始和结束 abbr 标签中写入的文本的缩写。
句法:

GFG

例子:

html



    
        Text Abbreviation
        
    
    
        
GeeksforGeeks
         

GFG                                abbreviation tag

              

输出:

文字缩写标签

Acronym 元素该标签用于表示开头和结尾的acronym 标签内所写的内容是一个缩写词。
句法:

 Text Content 

例子:

html



    
        Acronym tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks acronym tag

                          

输出:

缩写标签

文本方向: bdo标签代表双向覆盖。它用于覆盖当前文本方向。默认文本方向是从左到右。但它可以通过使用 bdo 标签覆盖。

  • ltr:指定从左到右的文本方向。
  • rtl:指定从右到左的文本方向。
  • auto:在此标签中,浏览器根据内容确定文本方向(仅在文本方向未知时推荐)。

句法:

 Text Content 

例子:

html



    
        Text decoration tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks text decoration tag

           

GeeksforGeeks text                         decoration tag

                          

输出:

文字装饰标签

短引号:要在句子中添加双引号,请使用q标签。在开始和结束q标签中写入的内容将打印在引号中。
句法:

 Text Content 

例子:

html



    
        Quotation tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks quotation tag

              

输出:

短引号

标记文本:打开和关闭标记标签中写入的内容将显示为黄色标记。基本上它像荧光笔一样工作,用于突出句子中的某些单词。
句法:
文字内容
例子:

html



    
        Mark tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks mark tag

              

输出:

标记的标签

强文本:标签用于显示句子中的重要单词。打开和关闭强标签中写入的内容将显示为重要词。
句法:

 Text Content 

例子:

html



    
        strong tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks strong tag

              

输出:

强标签

引用文本: blockquote 标记用于引用语句中。这意味着在 open 和 close blockquote 标签之间写入的内容将被视为引用文本。
句法:

Text Content

例子:

html



    
        Blockquote tag
        
    
    
        
GeeksforGeeks
        
GeeksforGeeks is a computer science         portal where you can learn programming. It contains         well written, well thought and well explained         computer science and programming articles, quizzes         and ...
            

输出:

块引用标签

编程代码:使用html代码标签来表示编程代码。打开和关闭代码标签内写入的内容被视为编程代码。
句法:

 Text Content 

例子:

html



    
        code tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks Programming code tag

                          

输出:

代码标签

程序输出:以 samp 标签编写的程序的输出。打开和关闭samp 标签中写入的内容将打印示例输出。
句法:

 Text Content 

例子:

html



    
        Program output tag
        
    
    
        
GeeksforGeeks
         

GeeksforGeeks program output tag

                          

输出:

输出标签

地址文本:地址标签用于在 Web 浏览器中显示地址。在开始和结束地址标记中写入的内容被认为是 HTML 中的地址。
句法:

Text Content

例子:

html



    
        Address tag
        
    
    
        
GeeksforGeeks
        
GeeksforGeeks office,                  sector-142, Noida,                  India
                        

输出:

地址标签

支持的浏览器:支持的浏览器如下所列。

  • 谷歌浏览器
  • IE浏览器
  • 火狐
  • 歌剧
  • 苹果浏览器