Sunday, 2 April 2017

Google Chrome Resolution and Font Enlargement Issues

As everyone of you knows, Google Chrome is one of the most widely used web browsers across the world. It's simple design and high search compatibility makes it easier to use and also to search various information we need across the world. Everything that is listed in the network can be found...

Monday, 1 August 2016

Top 10 Blogging Platform

Everyone loves blogging. Well, most of them. It is said that there is a story inside of everyone and blogging is one way to bring out what is inside of us. Blogging is not just a passive process, it is not just for fun. It is a way that connects one person to another. It is a way which unites people...

Thursday, 12 November 2015

Computer Security Tips

Keeping your computer from harm's way is important for any individual. Even for any private computers or public computers, you need to make sure that your contents are away from other people's hands. I cannot blame everyone, because no one is the same. If someone get hold of your contents somehow,...

Sunday, 17 May 2015

Monday, 4 May 2015

Protect Files & Folders in Windows

Locking a folder is sometimes important for us. Maybe we have some files that we don't want others to get their hands into. Those files may be important for us or for our work and those in the wrong hand may sometime leads to a miserable life to us. But remember that there is no 100% protected folder....

Friday, 1 May 2015

Bootstrap Website

Creating a website with Bootstrap is easy and fun. If you know HTML and CSS or have a basic knowledge to code them, then you wont have much a problem to code in Bootstrap. Bootstrap used both HTML and CSS properties for designing. It commonly uses the HTML5 doctype. You should always remember to put the HTML5 doctype declaration and also the lang attribute at the starting of the webpage. <!DOCTYPE...

CSS Links

Links are found in every document. Links are used to click their way from one page to another page. With CSS, we can style links to make them decorative and colorful. Styling Links Links can be styled with any CSS property such as color, font-family, background etc. In addition, links can be styled differently depending on what state they are in. The four link states are: a:link - a normal link,...

HTML Forms

HTML Forms are used to create different kinds of user inputs. HTML <form> Tag HTML <form> tag is used create an HTML form to pass user inputs and data to the server. AN HTML form can contain input elements like text fields, checkbox, radio-buttons, submit-buttons, and more. A form can also contain select lists, textarea, fieldset, and label elements. The <form> elemts can contain...

Thursday, 30 April 2015

Mouse Tips All Should Know In Windows

Mouse is an important device for computer users. Some may not think about that, but guess a computer with no mouse and you to use the keyboard everytime you want to click something, maybe an icon or a pageo r anything else. Now did you find the use of mouse. In fact, mouse is one of most important...

Wednesday, 29 April 2015

jQuery Syntax

With jQuery, we can select HTML elements and perform some actions in it. jQuery Syntax The jQuery syntax is used to select the HTML elements and perform some action in it. The Basic Syntax is : $(selector).action() The $ sign is used to define or access jQuery The (selector) is used to find or select HTML elements. The action() is the jQuery action to be performed in the HTML element. For example: $("p").hide() The...