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, 5489👍, 0💬
Popular Posts:
What is MHT or MHTML? MHT or MHTML, short name for MIME HTML, is used as the file extension for MIME...
What is XLSB? XLSB, short name for Excel Spreadsheet Binary, is used as the file extension for sprea...
Karaoke files storing MIDI music messages and synchronized lyrics to play on Karaoke machines. A KAR...
What is MDB? MDB, short name for Microsoft Database, is used as the file extension for Microsoft Acc...
What is WMF or EMF? WMF stands for Windows Metafile. EMF stands for Enhanced Windows Metafile WMF or...