Top Ads

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Very Simple Model Popup Box HTML,CSS and BASIC JQUERY

A modal dialog is not truly modal if you can see and interact with the page that it is overlaying. To complete this we need to create an overlay that will be semi opaque and sit between the Confirmation dialog and the page.JavaScript has three kind of popup boxes: Alert box, Confirm box, and Prompt box Etc.That gives us our HTML and CSS. Now for the jQuery.While there are...

What is CSS Syntax and Selectors

A style rule is made of three parts −     Selector − A selector is an HTML tag at which a style will be applied. This could be any tag like <h1>,<h2>.......<h6> or <table> etc.     Property - A property is a type of attribute of HTML tag. Put simply, all the HTML attributes are converted into CSS properties. They could...

What is Cascading Style Sheets (CSS)?

CSS stands for Cascading Style Sheets CSS describes how HTML elements are to be displayed on screen, paper, or in other media CSS saves a lot of work. It can control the layout of multiple web pages all at once External stylesheets are stored in CSS files.CSS is easy to learn and understand but it provides powerful control over the presentation of an HTML document. Most commonly, CSS is combined with the markup languages HTML or XHTML.Advantages...

Web Browsers

The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them. The browser does not display the HTML tags, but uses them to determine how to display the document...

Html Use br,pre and hr Tag

HTML LINE BREAKS The HTML <br> element defines a line break. Use <br> if you want a line break (a new line) without starting a new paragraph. The <br> tag is an empty tag, which means that it has no end tag. CODE <p>This is<br>a paragraph<br>with line breaks.</p> VIEW HTML <PRE> ELEMENT The...