You are on page 1of 6

NAME:- Gopal Ranjan

REG. NO.: 2022CA033

SUBJECT: XML APPLICATION [LAB]

ASSIGNMENT 1

………………………………………………………..QUESTION 1 ……………………………………………………………………

<!DOCTYPE html>

<html>

<head>

<title>Title tag for title</title>

</head>

<body style="background-color:#c91cb2;">

<h1>

Header for some heading

</h1>

<pre>This is in pre tag</pre>

<p>This is in paragraph tag</p>

</body>

</html>

……OUTPUT………

……………………………………………………………..QUESTION- 2…………………………………………………………………

<!DOCTYPE html>

<html>

<head>

<title>RISHI</title>

</head>
<body style="background-color:#25c91c;">

<h1>

DISPLAY THE TEXT !!

</h1>

<p>i) &lt;&lt;Hello&gt;&gt; </p>

<p>ii) Superscript <sup>superscript</sup> + Subscript<sub>subscript</sub></p>

<p>iii) <strike> Strikes Text </strike></p>

<p>iv)
Welcome&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;to&n
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;M
NNIT </p>

</body>

</html>

………..OUTPUT………….

…………………………………………………….QUETION-3……………………………………………………………

<!DOCTYPE html>
<html>

<head>

<title>RISHI</title>

</head>

<body style="background-color:#c7f120;">

<h1>

Number List

</h1>

<ol type = "1">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ol>

<h1>

Upper Case letter List

</h1>

<ol type = "A">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ol>

<h1>

Lower Case letter List

</h1>

<ol type = "a">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ol>

<h1>

Roman Numbers List


</h1>

<ol type = "I">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ol>

<h1>

Lower Case Roman Numbers List

</h1>

<ol type = "i">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ol>

<h1>

Disc Bullets List

</h1>

<ul style = "list-style-type:disc">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ul>

<h1>

Circle Bullets List

</h1>

<ul style = "list-style-type:circle">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>
</ul>

<h1>

Square Bullets List

</h1>

<ul style = "list-style-type:square">

<li>Apples</li>

<li>Bananas</li>

<li>Lemons</li>

</ul>

</body>

</html>

………..OUTPUT………….

You might also like