0% found this document useful (0 votes)
8 views3 pages

WT Ass 3 Program With Output

The document contains an XML representation of a student database with two entries, including details such as roll number, name, and address. It is styled using CSS, which specifies background colors, font sizes, and border styles for various elements. The overall design features a gray background for the student list and distinct colors for individual student details.

Uploaded by

unknown virus
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views3 pages

WT Ass 3 Program With Output

The document contains an XML representation of a student database with two entries, including details such as roll number, name, and address. It is styled using CSS, which specifies background colors, font sizes, and border styles for various elements. The overall design features a gray background for the student list and distinct colors for individual student details.

Uploaded by

unknown virus
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

x1.

xml

<?xml version="1.0"?>

<?xml-stylesheet type ="text/css" href = "rules.css"?>

<students>

<heading>This is student Database</heading>

<stud>

<Rno>Ro no is- 2</Rno>

<Name> Name is- Pooja </Name>

<Address> Address is ;- Osmanabad</Address>

</stud>

<stud>

<Rno>Roll no is- 3</Rno>

<Name>Name is - Rahul </Name>

<Address>Address is :- Baramati</Address>

</stud>

</students>
rules.css

students

background-color: Gray;

heading

font-size: 40px;

color: Blue;

background: Gray;

Rno,Name, Address

display:block;

font-size: 30px;

color: green;

Rno

background-color: Yellow;

border-color: red;

border-width: 10px;

}
Name

background-color: pink;

border-style: solid;

border-color: red;

border-width: 2px;

Address

background-color: red;

border-color: blue;

border-width: 2px;

/******** OUTPUT **********/

You might also like