The document describes a lab program to design an XML document to store information about students from an engineering college including USN, name, college, branch, year of joining and email. It provides sample data for 3 students and a CSS stylesheet to display the XML document.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
9 views3 pages
P5
The document describes a lab program to design an XML document to store information about students from an engineering college including USN, name, college, branch, year of joining and email. It provides sample data for 3 students and a CSS stylesheet to display the XML document.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3
Lab Program 5:
Design an XML document to store information about a student in an
engineering college affiliated to VTU. The information must include USN, Name, and Name of the College, Branch, Year of Joining, and email id. Make up sample data for 3 students. Create a CSS style sheet and use it to display the document. Program5.xml <?xml version = "1.0" encoding = "utf-8"?> <?xml-stylesheet type = "text/css" href = "5a.css"?> <vtu_college> <details> <usn>1BG20CS031</usn> <name>Chaitra</name> <college>BNMIT</college> <branch>Computer Science and Engg</branch> <year>2021</year> <email>[email protected]</email> </details> <details> <usn>1BG20CS007</usn> <name>Deepti</name> <college>BNMIT</college> <branch>Computer Science and Engg</branch> <year>2020</year> <email>[email protected]</email> </details> <details> <usn>1BG20IS047</usn> <name>Sharath</name> <college>BNMIT</college> <branch>Information Science and Engg</branch> <year>2020</year> <email>[email protected]</email> </details> </vtu_college> ---------Save as 5a.css -------- details{ display:block; font-size:14pt; color:red; font-family:Ariel; } usn{ display:block; font style:italic; font size:16pt; color:purple; } name{ display:block; font-style:italic; font-size:16pt; color:blue; } college{ display:block; font-style:italic; font-size:16pt; color:green; } branch,year,email { display:block; font-style:italic; font-size:16pt; color:orange; }