Calendar Year: October, 2021 Archives List


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

How to Send Verification link when a new user register

Author image
By JOHN Fri, Oct 15, 2021 at 07:49 AM (3 years ago )
Updated On Fri, Nov 04, 2022 at 05:00 PM (2 years ago)

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.

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.



Read More … 
HTML structure image HTML

HTML structure

Author image
By GETACHEW Sat, Oct 09, 2021 at 05:57 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 06:35 PM (2 years ago)

<!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="col...                          

Read More … 
Inline color image Web Design

Inline color

Author image
By GETACHEW Sat, Oct 09, 2021 at 03:44 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

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 … 
add prism code snippet in to a website image JavaScript

Add prism code snippet in to a website

Author image
By GETACHEW Fri, Oct 08, 2021 at 08:57 AM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

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

Read More … 
Html code snippet image HTML

Html code snippet

Author image
By JOHN Thu, Oct 07, 2021 at 09:28 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

<!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" />
<li...                          

Read More … 
using Line Numbers in code snippet   image JavaScript

Using Line Numbers in code snippet

Author image
By JOHN Thu, Oct 07, 2021 at 07:47 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)


(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;
		}
	}
                          

Read More … 
JavaScript image JAVA

JavaScript

Author image
By JOHN Thu, Oct 07, 2021 at 03:14 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

// 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;
}                          

Read More … 

Search


Find Us on Facebook

Subscribe for new Updates




Back to Top