settings

Highlight

bookmark

Prismis a lightweight, extensible syntax highlighter, built with modern web standards in mind. It's a spin-off from Dabblet and is tested there daily by thousands.

Introduction
LanguageClass
HTMLlanguage-html
CSSlanguage-css
JavaScriptlanguage-javascript
PHPlanguage-php
SQLlanguage-sql
Clanguage-c
C++language-cpp
Javalanguage-java
PowerShelllanguage-powershell
Pythonlanguage-python
Find more language and class here.
Example
<!DOCTYPE html><html>    <head>        <title>Page Title</title>    </head>    <body>        <h1>This is a Heading</h1>        <p>This is a paragraph.</p>    </body></html>
body {    background-color: #fafafa;}h1 {    color: white;    text-align: center;}p {    font-family: verdana;    font-size: 20px;}
function myFunction(x, y) {    if (y === undefined) {        y = 0;    }        return x * y;}