Computer Science, asked by Anonymous, 3 months ago

How to change the colour, style and size using font tag? explain with syntax as a reference.​

Answers

Answered by mukilan2808
2

Answer:

FOR STYLE

<p style="font-size:30px">This is a paragraph.</p>

<p style="font-size:11px">This is another paragraph.</p>

FOR FONT CHANGE

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

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

FOR COLOR

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

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

Explanation:

Similar questions