我們如何使用HTML中的標籤進行計算機輸出格式化?


我們使用標籤執行計算機輸出格式化。這是一個短語標籤。用於定義和識別計算機程式的示例輸出。它將在元素內用單聲道字型顯示文字。

語法

<samp>The text…</samp>

例1

以下是解釋HTML中標籤用法的一個簡單示例−

<html> <head> <meta charset="UTF-8"> <meta name="description" content="meta tag in the web document"> <meta name="keywords" content="HTML,CSS"> <meta name="author" content="lokesh"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <p><b>Pluralsight</b> is the technology workforce development company that helps teams know more and work better together with stronger skills, improved processes</p> <samp> Pluralsight, Inc. is an American privately held online education company that offers a variety of video training courses for software developers </samp> </body> </html>

例2

另一個在html文件中使用此標籤的示例是−

<html> <head> <title>Title of the document</title> </head> <body> <samp> <h2> HTML document</h2> <p>This is a paragraph.</p> <p>This is another paragraph</p> </samp> </body> </html>

例3

我們可以使用樣式表覆蓋字型樣式。

<html> <head> <meta charset="UTF-8"> <meta name="description" content="meta tag in the web document"> <meta name="keywords" content="HTML,CSS"> <meta name="author" content="lokesh"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> samp{ font-family: cursive; } </style> </head> <body> <p><b>Pluralsight</b> is the technology workforce development company that helps teams know more and work better together with stronger skills, improved processes</p> <samp> Pluralsight, Inc. is an American privately held online education company that offers a variety of video training courses for software developers </samp> </body> </html>

更新於: 19-10-2022

180瀏覽

開啟你的 職業

完成課程,獲得認證

開始
廣告
© . All rights reserved.