Web Technology Lab Report 2
Web Technology Lab Report 2
Lab 2
Result of XML-
<booklist>
<book category="java">
<title lang="en">Polymorphism</title>
<author>Someperson</author>
<year>2005</year>
<price>60.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>60</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Ramesh singh saud</author>
<year>2019</year>
<price>12095</price>
</book>
</bookstore>
<?xml version="1.0"?>
<!DOCTYPE employee SYSTEM "employee.dtd">
<employee>
<firstname>ram</firstname>
<lastname>thapa</lastname>
<email>[email protected]</email>
</employee>
employee.dtt
Result-
<employee>
<firstname>ram</firstname>
<lastname>thapa</lastname>
<email>[email protected]</email>
</employee>