How to create XML file for employee management system and display it using CSS?
Employees are working for many organizations. For maintaining the details,we need to collect the name,employee id,designation and salary details. Here, we use CSS(Cascading Style sheets) to display XML files. For doing this,we need to open any text editor like notepad. Create two files and name that as “employee.xml” and “employee.css” Add the following code. employee.xml <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/css" href="employee.css"?> <payroll> <Heading> Welcome to the Employee management system </Heading> <employee> <name> adhav </name> <id> Emp01 </id> <Designation> Executive </Designation> ...