How to change font size in html?

fonts, html, size

Solution

Give them a class and add your style to the class.

<style>
  p {
    color: red;
  }
  .paragraph1 {
    font-size: 18px;
  }
  .paragraph2 {
    font-size: 13px;
  }
</style>

<p class="paragraph1">Paragraph 1</p>
<p class="paragraph2">Paragraph 2</p>

Check this EXAMPLE

Problem

I am trying to make a website and I want to know how to change the size of text in a paragraph. I want paragraph 1 to be bigger than paragraph 2. It doesn't matter how much bigger, as long as it's bigger. How do I do this? My code is below: ``` <html> <head> <style> p { color: red; } </style> </head> <body> <p>Paragraph 1</p> <p>Paragraph 2</p> </body> </html> ```

Original source