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...

Monday, 27 April 2015

HTML Tables

Tables are used to create tabular data that is, data represented in rows and columns. HTML tables are created using the <table> tag in conjunction with the <tr> and <td> tags. Some also use table to represent web layouts. HTML <table> Tag The <table> tag is used to create a HTML table. The <table> tag is used in conjunction with the <tr>, <th> and...

JavaScript Syntax

Just like all programming language,in JavaScript also, the Syntax defines how to construct the language. It is the principle by which the language is constructed. The sentences of a programming language is called statements. JavaScript Character Set JavaScript uses Unicode character set. Unicode cover almost all characters, punctuations, and symbols in the world. Unicode enables processing, storage,...

Sunday, 26 April 2015

JavaScript Statements

WebLearn Tech A JavaScript consist of statements that are placed inside the <script> and </script> HTML tags. The <script> tag tells the browser that everything inside the tag is a script. In HTML, JavaScript is a sequence of statements that can be executed by a web browser. JavaScript Statements JavaScript statements are commands to the browser. It tells the browser...

Resolve Windows Automatic Rebooting

Sometimes after a system failure or a system crash you may find that the windows OS keeps rebooting on and on. The system may open only up to the windows loading and then reboots. Yes, it is a problem happened to most PC in the world. You may sometimes worry about this or may get irritated. You may...

Saturday, 25 April 2015

Keyboard Shortcuts All Should Know In Windows

Keyboard is an essential part of our life. Not only for computer professionals, but also to small kids onwards, we need keyboards to type in the data to the computer. In fact, keyboard is one of those devices which have reduced time management. So keyboards are a friend to anybody who uses computer,...

CSS List

WebLearn Tech The CSS List property allows you to set different list item markers for ordered and unordered list. In HTML, there are two kinds of list, unordered list and ordered list. With CSS, it can be styled further and images can be used as lists. List Style The list-style property is used to set all list styles in one declaration. The properties are in the order: list-style-type,...

HTML Sections

HTML elements can be grouped together for various content. Some of the common used tags are <div> and <span>. We can use <div> to display the header section or footer section. But, in HTML5, new tags such as <nav>, <header>, <footer> reduce the tag consumption used in <div> element. HTML <div> Tag The <div> tag is used as a block level element...

Friday, 24 April 2015

What is Bootstrap?

Bootstrap is a powerful free front-end framework for faster and better web development. Bootstrap includes HTML and also CSS based designs for typography, layout, forms, buttons, images etc. It also contains many JavaScript plugins. Bootstrap also has the ability to create responsive websites. Responsive websites are those websites that automatically adjust their design so as to work perfectly in...

Thursday, 23 April 2015

HTML Multimedia

Multimedia comes in different format. It can be pictures, audio, video, animation and much more. Modern web pages often have embedded multimedia elements and supports various multimedia format. Multimedia Formats Multimedia elements like audio and video are stored in media files. The most common way to look up a media file is to look its extension. HTML5 <audio> Tag Before HTML5, audio...