Welcome to the Real Estate Forum


The "ORIGINAL" Real Estate Social Network" SINCE 2005 and your #1 Resource for all things Real Estate


  •  »Over 35,000 Members
  •  » Answer Questions From "REAL" Buyers & Sellers
  •  »Ask Questions & Share Stories With Fellow Real Estate Professionals.
  •  »Read Articles & Blogs written by Real Estate Professionals.

...you have come to the right place!


YES! I want to register an account for free right now!


p.s.: For registered members YOUR FORUM NAME is free of ads

Results 1 to 3 of 3
  1. #1
    fred is offline Fixer Upper
    Join Date
    Feb 2010
    Posts
    19

    Default What is DDT?

    I Really Want To Know What is meant by DDT in Web Development?
    Kindly Guide Me.

  2. #2
    kschweick is offline Fixer Upper
    Join Date
    Feb 2010
    Posts
    23

    Default

    I can't actually think of anything related to web design that is abbreviated DDT... perhaps you meant DTD?

    DTD stands for document type definition. It should be the very first line of code in an HTML file specifying exactly which version of HTML you are using. For example, there is HTML and XHTML and both have version numbers (like HTML 4.01 and XHTML 1.0). Then you can also specify whether you are coding in strict, transitional, or frameset; where strict code should technically not use any depreciated elements, transitional may include transitional elements, and frameset should be used if you have frames on your site and I think it also supports depreciated elements but I'm not sure (my tip is just don't use frames for many reasons).

    Anyway, you can look these up on the W3C's website, but here are two common examples:

    EDIT: I apparently still don't have enough posts to use URLs yet, so my examples below didn't quite work. Anywhere you see H T T P in my example, you need to replace that with http colon slash slash.

    HTML 4.01 transitional - for sites using HTML (not XHTML) and that make use of depreciated tags (elements from an older version of HTML that were retired in 4.01)
    HTML Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "H T T P w3.org/TR/html4/loose.dtd">
    XHTML 1.0 strict - for sites with XHTML that don't use any old tags
    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "H T T P w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    Notice that on the XHTML example, you don't end this with a /> because it is not exactly an HTML tag.

    Hopefully that's what you meant, but if not, maybe you could explain in more detail in what context the abbreviation was used?

  3. #3
    fred is offline Fixer Upper
    Join Date
    Feb 2010
    Posts
    19

    Default Thank u dear

    Thank u so much dear it is exactly the thing which i want to know

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •