The Combine Website of all Practicals till 1 to 9 will upload Soon !!!
Practical 3
Index.HTML
Copied!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
p{
font-style: italic;
}
body {
background-image: url('https://media.istockphoto.com/id/937025430/photo/abstract-defocused-blue-soft-background.webp?s=1024x1024&w=is&k=20&c=MDMezxBPTJGq1QugjBDLxsMZfWAYD-MShqWVx0nDXCw=');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
<title>Practical 3</title>
</head>
<body>
<p><b>All that glitters is not gold</b></p>
<p>
<math>
<mi>x</mi>
<mo>=</mo>
<mfrac linethickness="0">
<mn>1</mn>
<mn>3</mn>
</mfrac>
<mo>(</mo>
<msup>
<mi>y</mi>
<mn>2</mn>
</msup>
<mo>+</mo>
<msup>
<mi>z</mi>
<mn>2</mn>
</msup>
<mo>)</mo>
</math> <br> <br>
This can be made using superscript and subscript.
</p>
<h2>Fruits:</h2>
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
<li>Strawberry</li>
<li>Grapes</li>
</ul>
<h2>Flowers:</h2>
<ol>
<li>Rose</li>
<li>Tulip</li>
<li>Sunflower</li>
</ol>
</body>
</html>