Day: February 27, 2017
-
SEO keywords finding and placement on web pages
We can find keyword ideas from multiple website. User can search keywords by following means searching of that common words which are directly or indirectly link with your web page purpose Common people use common lines to search on search engines Today, there is always a competitor site in market. So user can get an…
-

What should be file name for SEO – search engine optimization
File name for all the website must be simple and SEO friendly. As search engine give high importance to all file names for SEO. Filename should be short and itself explainable . File name must have minus symbol instead of underscore. We must use few keywords in file name. Do not use filenames such as single…
-

What should be valid SEO -Search Engine Optimization
All users must do valid SEO for their websites. As search engines can easily read the purpose of page. During SEO , user must take care of below points User should keep perfect data in pages they should not keep relevent data on pages. Website should follow complete SEO guidelines Data should not be duplicate…
-
What is off page SEO – Search Engine Optimization
There are multiple type of SEO. Here we will about the Off page SEO. Off page SEO is not done on website directly. Its done in multiple ways. Some of list is as follow Off page SEO is done by doing link building By sharing web link with public by using multiple portals Submitting link…
-

What is on page seo – Search engine optimization
On page SEO is defined on website itself. There can be multiple factor that where content needs to be put on web page. In on page seo , all SEO related activies are done on web page source code. Below are the few things which we must take care for on page SEO Title of…
-

What is the backend process of SE – Search Engine
Search Engine is working for all web pages in below ways Search Engine crawls the complete website and fetches all urls from the web pages. If we talk about google then google performed this crawl by GOOGLEBOT. Search Engine create index for all the web pages and enter this information into own database. Whenever any…
-

What is the need of SEO – Search Engine Optimization
SEO stands for Search Engine Optimization. We do SEO for multiple reasons. Below are the few one To give good rank to our website To provide high and good quality traffic to our website To get listed website on the top of search engines. To reach the target public for which website is prepared
-
What is Cross-Browser testing
What should we validate in Cross-Browser testing? As far as, I have found a way on this, my understanding is as below with each category explained on its approach: Validating CSS Page Element Operations (E.g. Click, LoseFocus, Submit etc) on plain browser or without JS Images and their URLs Font sizes (from browser) Zoom behaviours…
-
How to Log in GIT
LOG View whole commits history git log View last n commits with its message only git log –oneline -n E.g. git log –oneline -n 2 View commits history with differences (-p) only upto two last commits (-2) git log -p -2 View commits history with statistics git log –stat View commits history beautifully in one-line,…
-
How to Tag in GIT
TAGGING A GIT BRANCH Show all tags git tag Search tag git tag -l “tag-search-pattern” E.g. git tag -l “v2.0.2*” Create annotated tag git tag -a <tagname> -m “<message>” E.g. git tag -a v2.0 -m “This version 2.0 contains web-ui changes” Show tag details git show <tagname> E.g. git show v2.0 Checkout tags git checkout…