我們使用縮寫版本來表示一系列字母。
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中標記縮寫或縮寫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!