How to create a XML DTD for displaying student details

XML is e X tensible M arkup L anguage which is used to create used defined tags. It has Elements ( <STUDENT>) Attributes (<STUDENT id="21it21">) To create a XML file, create three files 1 -> XML file (used to declare the user defined tags) 2 -> DTD file (used to define the user defined tags) 3 -> HTML file(used to display the xml file as web page) create these three files using any editor like notepad. Student.Xml <?xml version="1.0"?> <!DOCTYPE STUDENTS SYSTEM "E:\XML1\STUDENT.dtd"> <STUDENTS> <STUDENT> <STUDENTDATA> <NAME> SUTHA </NAME> <ID> 2007IT51 </ID> <AGE> 20 </AGE> <ADDRESS> 12, SATHY ROAD , GOBI </ADDRESS> </STUDENTDATA> </STUDENT> </STUDENTS> Student.dtd <?xml version="1.0"?> <!ELEMENT STU...