I in my application I need to show code snippets of user entered code
How can I create code snippets styled with syntax highlights using HTML, CSS, JS or may Jquery like these examples -
Example 1 of Carbon Website
Example 2 of W3 School
Example 3 of Stack Overflow
// As you can see this code snippet image or customized code box
//this is the example of stackoverflow website
const simpleConst = "How can I create this type of code snippets by using Html CSS Js";
console.log(simpleConst);
any help will be always appreciated :)

