Categories
Technology

Create android app online for your blog

Android OS is one of the most used mobile OS and a quick way to access your Blog. Here are some website that creates android app online for your blog. But, whenever we discuss about creating any mobile app, the first thing that which comes in our mind is coding. So, here we are discussing […]

Categories
Html

Valid values for id attribute in HTML

While creating the id attributes for HTML elements, we need to provide Valid values for id attribute. Let’s see what are they. ID and NAME value must contain with a letter (A-Za-z) and this may be followed by any number of letters, digits (0-9), underscores (“_”), hyphens (“-“), periods (“.”) and colons (“:”). In HTML […]

Categories
Css3

Apply CSS to half of a character

Is there a way to apply CSS to half of a character in a text? Yes, it is possible. Half the letter being transparent and half is visible prominent. All you need to do is to add a class on the text you want to apply CSS and the rest is taken care of. The accessibility […]

Categories
Css

HTML Cellpadding and Cellspacing in CSS

In an HTML table, We can already set the cellpadding and cellspacing of a table. But, what if we like to implement with the help of CSS? Let’s see that. Cell padding: This is used for formatting purpose that is used to specify the space needed between the edges of the cells and also in […]

Categories
Html5

Store objects in HTML5 localStorage

The localStorage property allows you to store objects in HTML5 that is more secure and can store large amounts of data locally. It’s essential sometimes having stored JavaScript object in HTML5 localStorage. But objects don’t seem to work? Let’s see. Basically, if you have a look for Apple, Mozilla and Microsoft documentation, you can find […]

Categories
Html

Href attribute for links: “javascript:void(0)” or “#”?

“javascript:void(0)” or “#”, these are two type by which we can call a JavaScript code. But, what do you prefer to do most? These are for a building a link that has the sole purpose of running JavaScript code. But, in terms of functionality, page loading speed, validation purposes, etc. It may come to our […]

Categories
Creative blog

How to get traffic without google

Here you will learn an alternative way to get traffic to your site i.e. is not search engine friendly without SEO or depends on Google. Traffic is a most important thing to a business page. Without any traffic there is no SEO and no user visit. Most of the traffic comes to a site is […]

Categories
Creative blog Social Media & Marketing

Benefits of using facebook comments

Facebook offers a commenting service on other website and that has few benefits to attract genuine commentators. Here we will discuss why you should be using Facebook commenting system on your site rather than default WordPress comment form and this is better than other systems like Disqus. Let me list out some reasons that states […]

Categories
Creative blog

Avoid getting your articles copied

Are you aware of copying your articles somewhere? Here is a guide for taking advantage of such situation and get benefits with that. So, the good way is to avoid getting scrapped somehow and create a system that use third party services and following tips to get most out of scrapped content from your articles. […]

Categories
Php

Match a backslash with preg_match() in PHP

Sometimes you need to match a backslash with preg_match, but this is not as straightforward as you might first think! The preg_match() function is nothing but a perl-compatible regular expression pattern match. The preg_match() function searches a string for pattern and returning true while pattern exists, otherwise false. A backslash(“\”) is used to escape a […]