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

Introduction to jQuery

jQuery is a lightweight "write less, do more" JavaScript library. The purpose of jQuery is to make JavaScript easy to use on our website. jQuery take a lot of common task that requires a lot of JavaScript code and wraps them into less code or just a single line. jQuery also simplifies a lot of complicated things from JavaScript like AJAX calls, and DOM manipulation. The jQuery library contains...

CSS Text Formatting

HTML text can be styled using CSS. Text formatting properties are used for this purpose. Text Color The color property is used to color the HTML text. In CSS, color options can be given by three different ways: HEX value - #000000 RGB value - rgb(0,0,0) Color name - Black For example: <!DOCTYPE html> <html> <head> <style> h1.color {color:red;} p.color {color:blue;} </style> </head> <body> <h1...

Wednesday, 22 April 2015

HTML Images

HTML has the function to add images also. Adding images, increases the design and creativity of the page. Today, almost all web pages have images. HTML <img> Tag In HTML, images are added using the <img> tag. It is an empty tag, so there is no need of closing it. To display the images, you will have to use the "src" attribute to find the destination source of the image. For example: <img...

Sunday, 19 April 2015

HTML Links

A link is group of words or images used to jump from one page to another. They are the most fundamental tag in the HTML page. So they are found mainly in all websites. HTML <a> Tag A <a> tag is used to jump from one page to another. It is used to display hyperlinks. When you rollover the cursor above the link, it turn into a little hand. The "href" attribute is used to denote the source...

Introduction to Bootstrap 3

Bootstrap 3 Bootstrap is a powerful and popular HTML, CSS, and JavaScript framework for creating responsive, mobile-first websites for faster and easier web develpoing. It can be designed by everyone who knows a little knowledge of HTML, CSS or JavaScript or all. It is user-friendly and is made for folks of all skill levels, devices of all shapes, and projects of all sizes. Bootstrap is completely...

JavaScript in HTML

JavaScript is mainly used to manipulate the HTML elements. JavaScript gives us the full freedom to add interactivity and responsiveness to our web page. As all of you know, HTML is used to give a structure to our web page and CSS is used to change the appearance of our page. But do you know why JavaScript is used? If you don't there is no problem. JavaScript is a web programming language that enables...

Wednesday, 15 April 2015

CSS Font

The CSS Font property defines the font family, boldness, size and style of the text Font The font property is used to set all the font properties in one declaration. The font properties are set in the order of "font-style, font-variant, font-weight, font-size, font-family." For example: <!DOCTYPE html> <html> <head> <style> p.html_font {font:"italic bold 15px "Georgia,...

Sunday, 5 April 2015

CSS Background

CSS background property is used to define the background properties of an element. The background properties used in CSS are: background-color background-image background-repeat background-attachment background position Background There are many properties when dealing with CSS backgrounds. So to shorten the code, it is best to specify all the properties in a single property. This is called the...

HTML Lists

Lists are used to order things or objects of the same category. They are used to number these objects according to a number. The most common types of lists are ordered list and unordered list. Ordered List The <ol> tag is used to denote an ordered lists. The ordered lists can be numerical or alphabetical in order. Ordered lists can be denoted in the following types: 1 - Represented in...

Saturday, 4 April 2015

Introduction to JavaScript

JavaScript is denoted as the language for the web, for HTML, for servers, for PC, laptops, tablets and more. It is one of the most important language in the world. Today, most of the modern HTML pages uses JavaScript. JavaScript is used to denote the behaviour of the webpage. JavaScript was invented by Brendan Eich. ECMA-262 is the official standard of JavaScript. JavaScript is a scripting language,...

HTML Text Formatting

HTML has different tags for different purpose. One such purpose is formatting text. In HTML, we can give headings, give styles to text and so on. It is thee function ehich make HTML easy to handle. HTML Headings Headings are important in HTML. Heading are given to mark the beginning or to know what the content is about. Headings are defined using <h1> to <h6> tags. <h1> tag describe...