xmp

書式

<xmp>〜</xmp>

属性

属性名 初期値 内 容
なし なし なし

対応

HTML 3.2
Microsoft (MSDN)
[IE3〜][Firefox 1〜][Safari 1〜][Opera 3〜][Netscape 2〜]

説明

テキストを、そのまま表示します。不等号記号や改行なども、そのまま出力されます。

関連タグ

listing, plaintext, pre

サンプルコード [実行]

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<xmp>
for (i=0; i<100; i++) {
n = i * i;
printf("%d\n",n);
}
</xmp>
</body>
</html>