我们使用缩写版本来表示一系列字母。
html 标签,用于定义缩写或首字母缩略词,如“html”、“css”、“mr.”等。
语法以下是 标记的语法。
<abbr title=delhi land and finance>dlf</abbr>
示例以下是 标记的示例程序。
<!doctype html><html><head> <title>html abbr tag</title></head><body> <h1>timings</h1> <p> we follow <abbr title=artificial intelligence>ai</abbr> for our webinars. </p></body></html>
示例下面是 标记的又一个示例程序。
<!doctype html><html><head></head><body> <p>dlf stands for <abbr title=delhi land and finance>dlf</abbr></p> <p>delhi land and finance is one of the largest commercial real estate developer in india.</p></body></html>
示例下面是 标记的又一个示例程序。
<!doctype html><html><head> <title>html abbr tag</title></head><body> <abbr title = ante meridiem>am</abbr> <br> <abbr title = post meridiem>pm</abbr> <br> <abbr title = indian standarad time>ist</abbr></body></html>
当我们将鼠标光标放在指定的文本上并按住时,就会显示该文本的缩写。
以上就是如何在html中标记缩写或首字母缩略词?的详细内容。