Answers for "highlight code html"

5

html highlight text

For HTML5: (with 'mark' tag)

<p>Do not forget to buy <mark>milk</mark> today.</p> 

In CSS file: (To customize highlight)

mark {
  background-color: yellow;
  color: black;
}
Posted by: Guest on March-16-2020
2

highlight.js

<link rel="stylesheet"
      href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css">
<script src="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
Posted by: Guest on May-19-2020
0

code highlighter html

"terminal.integrated.defaultProfile.windows": "Command Prompt"
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language