Тема: xmp, як вивести HTML код і виділити (<b>) потрібні слова

Я використовую тег <xmp> для виведення HTML кода, але мені потрібно деякі слова виділити, звичайно в тегу <xmp> не працює <b> я спробував перед кожним мені потрібним рядком ставити <xmp> але тоді рядки переносяться і конструкція типу <div style = "white-space: nowrap;word-wrap: normal;"><div> чи <nobr> не допомагає. Як вивести HTML код рядком без переносі і виділити (<b>) потрібні слова
Отак
Ключ = <div>4<div> Тіло = <p>text<p>

2

Re: xmp, як вивести HTML код і виділити (<b>) потрібні слова

https://developer.mozilla.org/en-US/doc … lement/xmp

Note: Do not use this element.
It has been deprecated since HTML3.2 and was not implemented in a consistent way. It was completely removed from the language in HTML5.
Use the <pre> element or, if semantically adequate, the <code> element instead. Note that you will need to escape the '<' character as '&lt;' to make sure it is not interpreted as markup.
A monospaced font can also be obtained on any element, by applying an adequate CSS style using monospace as the generic-font value for the font-family property.

Подякували: Betterthanyou1