Calendar Year: October, 2021 Archives List


PHP How to Send Verification link when a new user register image
How to Send Verification link when a new user register
Author image

<p>We are going to build a nice PHP sign-up script where a user can create an account to gain access to the&nbsp;&quot;members only section&quot; 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&#39;ll receive in their email inbox.</p> <pre> <code c...

Read More
HTML HTML structure image
HTML structure
Author image

<pre> <code class="language-html">&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="utf-8" /&gt; &lt;title&gt;Example&lt;/title&gt; &lt;style&gt; /* Also works here */ a.not-a-class { color: blue; } &lt;/style&gt; &lt;body&gt; &lt;div style="color: green;"&gt;&lt;/div&gt; &lt;div style="color: yellow;"&gt;&l...

Read More
Web Design Inline color image
Inline color
Author image

span.foo { background-color: navy; color: #BFD; } span.bar { background: rgba(105, 0, 12, .38); color: hsl(30, 100%, 50%); border-color: transparent; }  

Read More
JavaScript add prism code snippet in to a website image
Add prism code snippet in to a website
Author image

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'; ...

Read More
HTML Html code snippet image
Html code snippet
Author image

<pre> <code class="language-html">&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="utf-8" /&gt; &lt;link rel="icon" href="assets/favicon.png" /&gt; &lt;title&gt;Line Numbers ? Prism plugins&lt;/title&gt; &lt;base href="../.." /&gt; &lt;link rel="stylesheet" href="assets/style.css" /&gt; &lt;link rel="stylesheet...

Read More
JavaScript using Line Numbers in code snippet   image
Using Line Numbers in code snippet
Author image

<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 ...

Read More
JAVA JavaScript image
JavaScript
Author image

<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 { @...

Read More

Search


Find Us on Facebook

Subscribe for new updates



Back to Top