1.8K Views
<p>We are going to build a nice PHP sign-up script where a user can create an account to gain access to the "members only section" of a website.</p> <p>After the user creates their account, the account will then be locked until the user clicks a verification link that they'll receive in their email inbox.</p> <pre> <code c...
<pre> <code class="language-html"><!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example</title> <style> /* Also works here */ a.not-a-class { color: blue; } </style> <body> <div style="color: green;"></div> <div style="color: yellow;">&l...
span.foo { background-color: navy; color: #BFD; } span.bar { background: rgba(105, 0, 12, .38); color: hsl(30, 100%, 50%); border-color: transparent; }
This is an example of code snippet how it display the content of you code (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } /** * Plugin name which is used as a class name for <pre> which is activating the plugin * * @type {string} */ var PLUGIN_NAME = 'line-numbers'; ...
<pre> <code class="language-html"><!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" href="assets/favicon.png" /> <title>Line Numbers ? Prism plugins</title> <base href="../.." /> <link rel="stylesheet" href="assets/style.css" /> <link rel="stylesheet...
<pre> <code class="language-javascript"> (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } function mapClassName(name) { var customClass = Prism.plugins.customClass; if (customClass) { return customClass.apply(name, 'none'); } else { return name; } } var PARTNER ...
<pre> <code class="language-css">// Variables $font-stack: Helvetica, sans-serif; $primary-color: #333; @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; -ms-border-radius: $radius; border-radius: $radius; } body { font: 100% $font-stack; color: $primary-color; } .box { @...