'-Tag in HTML für die Formatierung der Computerausgabe verwenden?
-Tag in HTML für die Formatierung der Computerausgabe verwenden?"></p> <p>Wir verwenden das Tag <b><samp></samp></b> für die Formatierung der Computerausgabe. Es ist ein Phrasen-Tag. Es wird verwendet, um die Beispielausgabe eines Computerprogramms zu definieren und zu identifizieren. Der Text im <samp>-Element wird in einer einzigen Schriftart angezeigt. </samp></p> <h2>Grammatik</h2> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'><samp>The text…</samp>
Hier ist ein einfaches Beispiel, um die Verwendung des -Tags in HTML zu erklären -
<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>
Ein weiteres Beispiel für die Verwendung dieses Tags in einem HTML-Dokument ist −
<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>
Wir können Schriftstile mithilfe von Stylesheets überschreiben.
<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>
Das obige ist der detaillierte Inhalt vonWie können wir das „
'-Tag in HTML für die Formatierung der Computerausgabe verwenden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!