Maison >interface Web >tutoriel HTML >Comment pouvons-nous utiliser la balise `
` en HTML pour le formatage de la sortie informatique ?
` en HTML pour le formatage de la sortie informatique ?
` en HTML pour le formatage de la sortie informatique ?"></p> <p>Nous utilisons la balise <b><samp></samp></b> pour le formatage de la sortie informatique. C'est une balise de phrase. Il est utilisé pour définir et identifier l’échantillon de sortie d’un programme informatique. Il affichera le texte de l'élément <samp> dans une seule police. </samp></p> <h2>Grammaire</h2> <pre class='brush:php;toolbar:false;'><samp>The text…</samp> La traduction chinoise de
Voici un exemple simple pour expliquer l'utilisation de la balise
<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>
La traduction chinoise de
<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>Exemple 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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!