Posts

Showing posts from 2016
Simple JavaScript Calculator code <!DOCTYPE html> <!-- JSCalculatorSimple.html --> <html lang="en"> <head>   <meta charset="utf-8">   <title>Simple JavaScript Calculator</title>   <style>      input {        font-family: consola, monospace;        color: blue;      }      td {        margin-left: auto;        margin-right: auto;        text-align: center;      }      table {        border: thick solid;      }   </style> </head>   <body> <h2>Simple JavaScript Calculator</h2>   <form name="calcForm"> <table> <tr>   <td colspan="4"><input type="text" name="display"     ...
About PHP ? PHP  is a  server-side scripting  language designed primarily for  web development  but also used as a  general-purpose programming language . Originally created by  Rasmus Lerdorf  in 1994,  the PHP  reference implementation  is now produced by The PHP Development Team.  PHP originally stood for  Personal Home Page ,  but it now stands for the  recursive acronym   PHP: Hypertext Preprocessor . PHP files have extension ".php" PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, etc.) PHP is compatible with almost all servers used today (Apache, IIS, etc.) PHP supports a wide range of databases. PHP is free. Download it from the official PHP resource:  www.php.net PHP is an amazing and popular language! It is powerful enough to be at the core of the biggest blogging system on the web (WordPress)! It is deep enough to run the largest social network (Facebook)! ...
About  WordPress WordPress  is a  free and open-source   content management system  (CMS) based on  PHP  and  MySQL .  WordPress is installed on a  web server , which either is part of an  Internet hosting service  or is a  network host  itself. It was released on May 27, 2003 , by its founders,  Matt Mullenweg  and  Mike Little ,  as a  fork  of  b2/cafelog   more commonly known as  b2  or  cafelog , was the precursor to WordPress . WordPress is released under the GPLv2 (or later) license from the  Free Software Foundation. Current stable version is 4.6 release date  August 16, 2016
List Of Essential WordPress Plugins Database and File Backup Plugins BackUpWordPress   – BackUpWordPress will back up your entire site including your database and all your files on a schedule that suits you. Search Engine Optimization (SEO) All in One SEO Pack – Out-of-the-box SEO for your WordPress blog. Install the all in one seo pack or the “WordPress SEO by Yoast” plugin (you don’t need to install both). WordPress SEO by Yoast – Yoast’s all in one SEO solution for your WordPress blog: SEO titles, meta descriptions, XML sitemaps, breadcrumbs & much more. Google XML Sitemaps – This plugin generates a XML-Sitemap compliant sitemap of your WordPress blog. This format is supported by Ask.com, Google, YAHOO and MSN Search. The SEO plugins listed above can also do the sitemap for you. Blog Security Plugin All In One WP Security & Firewall – The All In One WordPress Security and Firewall is the ultimate security plugin that will take your ...
Bootstrap form validation The HTML :   <form class="form-horizontal" action=" " method="post"  id="reg_form">     <fieldset>             <!-- Form Name -->       <legend> Personal Information </legend>           <!-- Text input-->             <div class="form-group">         <label class="col-md-4 control-label">First Name</label>         <div class="col-md-6  inputGroupContainer">           <div class="input-group"> <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>             <input  name="first_name" placeholder="First Name" class="form-control"  type="text">           </div>      ...
Image
Interview Question answer of front-en-developer.  Difference between visibility:hidden and display:none? display:none  means that the tag in question will not appear on the page at all. There will be no space allocated for it between the other tags. visibility:hidden  means that unlike  display:none , the tag is not visible, but space is allocated for it on the page. it just isn't seen on the page. Difference between display inline, inline-block, and block? display:inline   can not  have a  height  or a  width  or a vertical  margin. display:block  means the element will occupy 100% width, and will start from a new line. display:inline-block  means the element will be inline (does not start from a new line) and will stretch to occupy width of content. Refer  Code  link :  http://jsfiddle.net/Mta2b/ Note:- Block element have 100% width means by default using display...