Pages

Thursday 1 October 2015

What is a Personal Website?

personal website is a group of Web pages that someone creates about themselves. It basically contains things that are personal. It doesn't have to be about you, and it doesn't have to contain personal information but it does need to be personal.
A personal website must exhibit content that tells your readers about your thoughts, ideas,

What is CSS ?

•CSS stands for Cascading Style Sheets
•CSS describes how HTML elements are to be displayed on screen, on paper, or in other media
•CSS saves a lot of work. It can control the layout of multiple Web pages all at once
•External Style Sheets are stored in CSS files

the Working of DHTML ?

DHTML as it is combination of HTML as well as JavaScript and it uses the HTML to render the text on the browser. It also uses DOM dynamic Object Model which renders its every element as an Object that can be changed by setting properties and methods. This is done with the help of Scripting. DHTML is part of the general computing trend of late '90s. This is a trend different from structured programming, with a focus on actions and toward object-based programming, where the objects can be compared to nouns in our language.
DHTML allows scripting languages to change variable in a web page's definition language, which in turn affects the look and function of otherwise "static" HTML page content, after the page has been fully loaded and during the viewing process.
How FontSize and Font Size is differ in DHTML?
font size is an attribute that we used in font tag.Where as font-size is an style property.

What are the features of DHTML?

Some most important features of DHTML are given below:
 Using DHTML we can change the tags and their properties.
 It is use for Real-time positioning.
 It is used to generate dynamic fonts (Netscape Communicator).
 Used for Data binding (Internet Explorer).

What is the difference between HTML and DHTML ?


html is used to write only static content
Dhtml is used to write dynamic content like using
javascript or vbscript in html to make html page dynamic
html is a error free language where dhtml is not a error
free language
HTML= IT IS LANGUAGE WHICH ARE USED TO DEVELOPE THE WEB PAGE IS THE INTERNET PAGE.
IT IS DEVIDED BY TWO PARTS:
<1> HEAD <2> BODY.
DHTML= IN WHICH WE CAN READY THE USER CAN STYLE SHEET

what is Dhtml ?

Dynamic HyerText Markup Language (DHTML) is a combination of Web development technologies used to create dynamically changing websites. Web pages may include animation, dynamic menus and text effects. The technologies used include a combination of HTML, JavaScript or VB Script,
CSS and the document object model (DOM).
Designed to enhance a Web user’s experience, DHTML includes the following features:
Dynamic content, which allows the user to dynamically change Web page content
Dynamic positioning of Web page elements
Dynamic style, which allows the user to change the Web page’s color, font, size or content.

Monday 28 September 2015

some html tags are .....

 1 Heading Tags
Any document starts with a heading. You can use different sizes for your headings. HTML also has six levels of headings, which use the elements <h1>, <h2>, <h3>, <h4>, <h5>, and <h6>. While displaying any heading, browser adds one line before and one line after that heading.

 2 Paragraph Tag
The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing </p> tag as shown below in the example:

 3 Line Break Tag
Whenever you use the <br /> element, anything following it starts from the next line. This tag is an example of an empty element, where you do not need opening and closing tags, as there is nothing to go in between them.

The <br /> tag has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break, while if you miss the forward slash character and just use <br> it is not valid in XHTML

 4 Centering Content
You can use <center> tag to put any content in the center of the page or any table cell.

 5 Horizontal Lines
Horizontal lines are used to visually break up sections of a document. The <hr> tag creates a line from the current position in the document to the right margin and breaks the line accordingly.

For example you may want to give a line between two paragraphs as in the given example below:


 6 Preserve Formatting
Sometimes you want your text to follow the exact format of how it is written in the HTML document. In those cases, you can use the p reformatted tag <pre>.

Any text between the opening <pre> tag and the closing </pre> tag will preserve the formatting of the source document.

 7 Nonbreaking Spaces
Suppose you want to use the phrase "12 Angry Men." Here you would not want a browser to split the "12, Angry" and "Men" across two lines:

An example of this technique appears in the movie "12 Angry Men."
In cases where you do not want the client browser to break text, you should use a nonbreaking space entity &nbsp; instead of a normal space.