Types of Meta Tags

As one of the important elements used in the head section of an HTML page, Meta-Tags could be more helpful for a website page in various ways. If you are not aware of what Meta-Tags are exactly then please read ‘What are Meta-Tags?’ for an introduction of Meta-Tags will help you to understand all types of Meta-Tags mentioned below. Character Encoding [...]

Read more

What are Meta-Tags?

You may have seen these in the head section of an HTML document, well meta tags are used to notify information and specify details related to the content of an HTML page [...]

What is Vue.js?

Vue is one of the progressive framework for building user interfaces. Unlike other monolithic frameworks in competition, Vue.js is crafted from scratch to be incrementally [...]

Best practices for standard JavaScript coding

Use 2 spaces for indentation. function hello (name) {   console.log('hi', name) } Use single quotes for strings except to avoid [...]

Simple contact form using AJAX, PHP, & Javascript

Are you new in web development? Hi-5!!! me too. I've just learned a tremendous trick today which is “making a typical contact form outstanding!!!”. You can always proceed [...]

Git Revert

The git revert command can be considered an 'undo' type command, however, it is not a traditional undo operation. Instead of removing the commit from the project [...]

Git Add

The git add command adds a change in the working directory to the staging area. It tells Git that you want to include updates to a particular file in the next commit. However, [...]

Git Log

The git log command displays committed snapshots. It lets you list the project history, filter it, and search for specific changes. While git status lets you inspect the [...]

Git Status

The git status command displays the state of the working directory and the staging area. It lets you see which changes have been staged, which haven’t, and which files [...]

Create Your First Cordova App

This guide shows you how to create a JS/HTML Cordova application and deploy them to various native mobile platforms using the cordova command-line interface [...]