css-font-size RUN
 
1
<!DOCTYPE html>
2
<html>
3
  <head>
4
    <style>
5
      p.f12 {
6
        font-size: 12px;
7
      }
8
      p.f15 {
9
        font-size: 25px;
10
      }
11
    </style>
12
  </head>
13
  <body>
14
    <p class="f12">Dây là font 12px</p>
15
    <p class="f25">Đây là font 25px</p>
16
  </body>
17
</html>