NEP CMA

PART -A

PROGRAM 1 PROGRAM 2 PROGRAM 3 PROGRAM 4 PROGRAM 5 PROGRAM 6 PROGRAM 7 PROGRAM 8

PART-B

PROGRAM B1 PROGRAM B2 PROGRAM B3 PROGRAM B4 PROGRAM B5 PROGRAM B6 PROGRAM B7 PROGRAM B8 . . .

1

 
   
  
      
       


<html>
<body>




<p>
Develop and demonstrate a HTML document that illustratesB<br> a) the use of Formatting Text. <br>b)
Headings tags (H1, H2, H3, H4, H5, H6) <br>c) Font Details (Font Size, Style, Type, Color) <br>d) Setting
Color (BG Color)
</p>

 <b>This text is bold</b> 
 <strong>This text is important!</strong> 
 <i>This text is italic</i> 
 <em>This text is emphasized</em> 


<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

<p><b>Tip:</b> Use h1 to h6 elements only for headings. Do not use them just to make text bold or big. Use other tags for that.</p>


<p style="font-size:30px">This is a paragraph.</p>
<p style="font-size:11px;color:red">This is another paragraph.</p>

<p style="color:red">This is a paragraph.</p>
<p style="color:blue">This is another paragraph.</p>

 <p style="font-family:verdana">This is a paragraph.</p>
<p style="font-family:'Courier New'">This is another paragraph.</p> 



<h1 style="background-color:powderblue;">This is a heading</h1>
<p style="background-color:tomato;">This is a paragraph.</p>



</body>
</html>