DOCTYPE declaration in JSP __js

Source: Internet
Author: User

Declare the DOCTYPE that suit your needs.

Looking at the original code, you can see that the first line is:

3C//DTD XHTML 1.0 transitional//en "
"Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >

Open some of the standard sites, such as the famous web design software developer Macromedia, Design Master Zeldman's personal website, will find the same code. The code for other standards-compliant sites, such as K10k.net, is as follows:

3C//DTD XHTML 1.0 frameset//en "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd" >

So what does the code mean? Be sure to place it.

What is DOCTYPE

The above code we call the DOCTYPE declaration. DOCTYPE is a shorthand for document type, which is used to indicate what version of XHTML or HTML you are using.

The DTD (for example, the XHTML1-TRANSITIONAL.DTD in the example above) is called the document type definition, which contains the rules of the document, and the browser interprets the identity of your page based on the DTD you define and displays it.

To create a standard Web page, the DOCTYPE declaration is an essential part of the key; unless your XHTML determines a correct DOCTYPE, your logo and CSS will not work.

XHTML 1.0 offers three types of DTD declarations to choose from:

Transition (Transitional): A very loose DTD that allows you to continue using HTML4.01 's identity (but to conform to the XHTML notation). The complete code is as follows:

3C//DTD XHTML 1.0 transitional//en "
"Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >

Strict (Strict): Requires a strict DTD, you can not use any of the performance layer of identity and attributes, such as
The complete code is as follows:

3C//DTD XHTML 1.0 strict//en "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >

Framework (Frameset): A DTD specifically designed for frames page design, if your page contains frames, you need to use this DTD. The complete code is as follows:

3C//DTD XHTML 1.0 frameset//en "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd" >

What kind of doctype do we choose?

Ideally, of course, a strict DTD, but for most of us who have just come in contact with Web standards, the transition DTD (XHTML 1.0 Transitional) is the ideal choice (including this site and the transition DTD). Because the DTD also allows us to use the identity, elements, and attributes of the presentation layer, it is also easier to pass the code checksum of the consortium.

Note: The above "performance layer identification, attributes" refers to those who are purely used to control the performance of the tag, such as the table used for typesetting, background color identification. The identity in XHTML is used to represent structs, not to implement representations, and the purpose of our transition is to ultimately achieve separation of data and performance.

For example, a mannequin changes clothes. Models are like data, clothes are representations, models and clothes are separate, so you can change clothes at will. The original HTML4, the data and performance is mixed together, it is very difficult to change the form of a one-time. Oh, a little abstract, this concept requires us to gradually understand in the application process.

Add

The DOCTYPE declaration must be placed at the top of every XHTML document, above all code and logo.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.