Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.DTD - File Extension for Document Type Definition
What is DTD? DTD, short name for Document Type Definition, is used as the file extension for Document Type Definition files. .DTD files are text files that can be opened by Notepad or any text editors. See the sample .DTD file included below.
✍: FYIcenter.com
File Extension: .DTD
MIME Type: text/plain
File Content: Document Type Definition
.DTD files are Document Type Definition files, which are used to provide element and attributes definitions for a group of XML files. Here is a sample .DTD Document Type Definition file, image.dtd:
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2000, 2010 Oracle and/or its affiliates. ... --> <!ENTITY % url "CDATA"> <!-- URI reference --> <!ENTITY % uriReference "CDATA"> <!-- a color value having the format #rrggbb --> <!ENTITY % color "CDATA"> <!-- determine the mask mode of the image bitmap --> <!ENTITY % maskMode "(maskcolor|maskbitmap)"> <!ELEMENT image:entry EMPTY> <!ATTLIST image:entry image:command %url; #REQUIRED image:bitmap-index CDATA #REQUIRED > <!ELEMENT image:externalentry EMPTY> <!ATTLIST image:externalentry image:command %url; #REQUIRED xlink:href %uriReference; #REQUIRED xlink:type CDATA #FIXED "simple" > <!ELEMENT image:externalimages (image:externalentry*)> <!ELEMENT image:images (image:entry*)> <!ATTLIST image:images xlink:href %uriReference; #REQUIRED xlink:type CDATA #FIXED "simple" image:maskmode %maskMode; "maskcolor" image:maskcolor %color; "#000000" image:maskurl %url; #IMPLIED > <!ELEMENT image:imagescontainer (image:images*, image:externalimages?)> <!ATTLIST image:imagescontainer xmlns:image CDATA #FIXED "http://openoffice.org/2001/image" xmlns:xlink CDATA #FIXED "http://www.w3.org/1999/xlink" >
.DTD Document Type Definition file sample: Click sample.dtd to download.
Since .DTD files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
2012-08-23, 5533👍, 0💬
Popular Posts:
What is ASPX? ASPX, short name for ASP.NET Script, is used as the file extension for ASP.NET Script ...
What is MPP? MPP, short name for Microsoft Project Plan, is used as the file extension for Microsoft...
What is DOTX? DOTX, short name for Document Template XML, is used as the file extension for files in...
What is XPS or OXPS? XPS stands for for XML Paper Specification. OXPS stands for for Open XML Paper ...
File extension EXE is used for executable files ready to be executed on computer systems. An EXE sam...