Search code examples
html

Multiple styles in HTML


Hi I have made a paragraph in HTML

<p style="font-size:50px" style="color:blue">this is my paragraph</p>

Why will this not show both the colour and the size. How could I fix this the colour is not showing


Solution

  • Please write in one style tag you using two tags so its not working.

    <p style="font-size:50px;color:blue">this is my paragraph</p>
    

    Using this please