Tech Word of the Day

Tech Word of the Day

DTD

Stands for "Document Type Definition." A DTD defines the tags and attributes used in an XML or HTML document. Any elements defined in a DTD can be used in these documents, along with the predefined tags and attributes that are part of each markup language. The following is an example of a DTD used for defining an automobile:

<!DOCTYPE automobile [
  <!ENTITY header "Car Details">
  <!ELEMENT make (#PCDATA)>
  <!ELEMENT model (#PCDATA)>
  <!ATTLIST model doors (two | four) #required>
  <!ELEMENT year (#PCDATA)>
  <!ELEMENT engine (#PCDATA)>
  <!ATTLIST engine transmission (manual | automatic) #required>
]>

The above DTD first defines the header of the item as "Car Details." Then it provides elements to define the make and model of the automobile. The "#PCDATA" data type means it can be any text value). The "ATTLIST" tag on the next line provides options for a specific element. In this case, it states that the model can have either two or four doors. The DTD then provides elements for the year and engine type of the car, followed by a choice of either a manual or automatic transmission for the engine.

The above example is a basic DTD that only uses a few data types. Document type definitions used for large XML databases can be thousands of lines long and can include many other data types. Fortunately, DTDs can be easily modified in a text editor whenever changes need to be made.

Reality2Reel.net is dedicated to informing and sharing the works of Independent Artists and sharing Random Positive Information (RPI) with the intent to inspire productivity.

About Us

We are a website dedicated to finding and sharing independent artists to the rest of the world digitally. On top of that we are also scavenging for the tool, tip and tricks and other resources.

I Make Beats Tee's (T Shirts)

(IOi)Indie Over industry INDIE Over industry speaks to the independent mindset of doing business and is also one of the many mottos of reality2reel.net. It's the independent "choice" over the Industry way of "control". We recognize the control over what gets seen

(IOi)Indie Over industry

(IOi)Indie Over industry

Tech Term of the Day

Tech Term of the Day