Skip to main content

Posts

Showing posts from March 21, 2014

html(conti.)

FRAME Html provides a facility to divide a web page into several blocks is known as frames. Each frame may display a separate web page and html document window in a one browser.  All browsers do not support the frames. The general use of frame is to have the menu in one frame and other frame contain the data. When user click on menu frame and data is displayed in corresponding frame.   Frame is started by using tags <frameset> and ends with </frameset>. Frame layout Frameset tag requires two attributes in which the screen is divided into rows and columns. Row-this attributes is used to divide page into multiple column or horizontally. Value of row is indicating the height of frame. For example-                 Rows=”20%,”                 Rows=”30%, 40%, 30%” Column- this attributes is used to divide page into multiple column or horizontally. Value of row is indicating the height of frame. For example-                   Cols=”20%,”                   Col

Fundamentals of CSS

CASCADING STYLE SHEET (CSS) Introduction Style sheets are powerful mechanism for adding different types of styles to any web document or web page. It allows web designer to improve and change the appearance of the web page in very efficient manner. It makes standard and uniformity throughout a web site. It enables us to control rendering of styles such as fonts, color, typeface, size, spacing, margins, and other aspects of document style. It is a style sheet language which specifies how to incorporate style information in a style sheet. These sheets are said to be cascade when they combine to specify the appearance of a web page, which indicate that several style sheet can be blended to a document. To embed style to a document <style>…. </style> tags are used. ADVANTAGES ·         Its main advantage is its ability to make global change to all documents from a single location. ·         The primary intention of CSS is to separate document presentation fr