You are on page 1of 3

Dept of Computer Science & Engineering, CMRIT.

WEB PROGRAMMING LABORATORY ( 06CSL78)

1CR07CS003
PROGRAM no.:1a
Question: develop and demonstrate a XHTML document that
Illustrates the use of external style sheet ,ordered list,table
Borders, padding, color and the <span> tag.

CODE SECTION

<?xml version = "1.0" encoding = "utf-8"?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns ="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css"
href="1.css"></link>
</head>
<body bgcolor ="green">
<ol>
<span class ="blue"><li>cs
department</li></span>
<ol>
<li>section A</li>
<ol>
<li>x</li>
<li>y</li>
<li>z</li>
</ol>
<li> section B</li>
<ol>
<li> a </li>
<li> b</li>
<li> c </li>
</ol>
</ol>
<span class ="blue"><li>ec
department</li></span>
<ol>
<li>section A</li>
<ol>
<li>x</li>
<li>y</li>
<li>z</li>
</ol>
Signature of Staff with Date: Page
No.
Dept of Computer Science & Engineering, CMRIT.
WEB PROGRAMMING LABORATORY ( 06CSL78)
<li> section B</li>
<ol>
<li> a </li>
<li> b</li>
<li> c </li>
</ol>
</ol>
<p>
<span class ="red">this shows list of
students names</span>
</p>
<p>
<span class ="yellow">this shows list of
sections</span>
</p>
<table border="border">
<caption> 7th sem names</caption>
<tr>
<th colspan="4">names</th>
</tr>
<tr>
<th colspan='2'>cs</th>
<th colspan='2'>ec</th>
</tr>
<tr>
<th>asec</th>
<th>bsec</th>
<th>asec</th>
<th>bsec</th>
</tr>
<tr>
<td> kavi</td>
<td> deepthi</td>
<td> kavya</td>
<td> bhavya</td>
</tr>
<tr>
<td>manu</td>
<td>kavya</td>
<td>shilpa</td>
<td> mega</td>
</tr>
</table>
</ol>
</body>
</html>

Signature of Staff with Date: Page


No.
Dept of Computer Science & Engineering, CMRIT.
WEB PROGRAMMING LABORATORY ( 06CSL78)

OUTPUT

Signature of Staff with Date: Page


No.

You might also like