PLEASE CHECK.IMPORTANT

Tuesday, November 11, 2008

TECHNICAL QUESTIONS

What is Document Type Definition?

Posted:

Document Type Definition is also called as DTD in short. This defines the document structure and standards to be followed in an HTML document.

What is index document?

Posted:

Most of the we host we have require index.htm / document because it is a standard for the host-server to look for the document and deploy it. It is the default document to be displayed in the web, in this way. Website is standardize upon their deployment.

What are HTML elements?

Posted:

HTML documents are text files made up of HTML elements and HTML elements are defined using html tags. This is my first homepage. This text is bold The HTML element starts with a start tag, then the content of the HTML element This is my first homepage & lastly HTML element ends with an end tag: [...]

What are web standards?

Posted:

The World Wide Web Consortium (W3C), along with other groups and standards bodies, has established technologies for creating and interpreting web-based content. These technologies are called as ‘web standards’. They are carefully designed to deliver the greatest benefits to the greatest number of web users while ensuring the long-term viability of any document published on [...]

How many parts are present in HTML documents?

Posted:

A basic html document consists of You can include no.of functions,tags inside body or head element.

How is color of background or text changed in HTML?

Posted:

This is a paragraph.

What is the option for making a new paragraph in HTML?

Posted:

Paragraphs are defined with the tag. HTML automatically adds an extra blank line before and after a paragraph. This is a paragraph This is another paragraph

What is HTML validation?

Posted:

It means checks the markup validity of Web documents in HTML Markup Validity: However, Just as texts in a natural language can include spelling or grammar errors, documents using Markup languages may (for various reasons) not be following these rules. The process of verifying whether a document actually follows the rules for the language(s) it uses is [...]

How is headings and text size made larger or small…

Posted:

1. You can use FONT tag in that particular place. 2. You can apply CSS Class. In that CSS file you will use FONT tag. For example, 1. 2. Inside the CSS class you can use the following. .txtnorm { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; color:#000000; } According to your requirement you can change the color and size of the [...]

What is contained in HTML markup?

Posted:

It consists of : 1. Character-based data types 2. Several key components, including elements (and their attributes) 3. Character references and entity references. 4. Also the document type declaration.

What is SPAN in HTML?

Posted:

The SPAN having notation as is used for highlighting text of any color desired, for adding colored text, for adding background image to text. SPAN doesn’t cause a line break. It delimits text and it allows styles to be applied to a ‘elemental’ region, or for the ‘elemental’ region to be identified, without causing a [...]

What is Empty Elements in HTML?

Posted:

Empty Elements in HTML depicts that there is no text contained and EMPTY attributes are not permitted to have an end-tag. They are used simply as markers.

What are the reasons for validating a HTML?

Posted:

To ensure one shared HTML coding standard in the World Wide Web To ensure smooth spiderability of the HTML page To ensure better positioning of the HTML in Search Engine

What is BODY in HTML document?

Posted:

The effects which we want in the window are mentioned with the help of tags in the body. It is the place where the actual data is given in html. All the changes can be viewed by changing the tagscontent in the body whereas the head part is the introduction part and the body [...]

How is picture displayed in background in a HTML?

Posted:

You have to use following code in your HTML web page

What is Semantic HTML?

Posted:

Semantic HTML means using HTML tags for their implied meaning, rather than just using (meaningless) div and span tags for absolutely everything. Why would you want to do this? Depending on the tag, the content in the tag can be interpreted in a certain way.

What is DIV in HTML?

Posted:

DIV IS SAME AS SPAN BUT IT HAS AN ADDITIONAL PROPERTY OF ALIGN IN IT WITH THE HELP OF WHICH WE CAN ALIGN THE TEXT WITHIN IT,FURTHER IF WE WANT TO PLACE OUR CODE ANYWHERE IN OUR PAGE WE USE DIV TAG AND OUR CODE WITHIN IT.

What is the format of document structure in HTML?

Posted:

Following is the required details for you: My first HTML document Hello world!

What is HEAD in HTML document?

Posted:

The head of an HTML document is an unordered collection of information about the document. The HEAD contains general information, or meta-information, about the document. The head appears first in a document above the BODY.

What is the history of HTML?

Posted:

The HyperText Markup Language (HTML) is a simple markup language used to create hypertext documents that are portable from one platform to another. HTML documents are Standard Generalised Markup Language(SGML) documents with generic semantics that are appropriate for representing information from a wide range of applications. Versions HTML2.0 HTML 2.0 was developed by the Internet Engineering Task Force [...]

No comments: