1p {
2 font-size: 15px;
3}
4
5p {
6 font-size: large;
7}
8
9p {
10 font-size: 150%;
11}
1<!DOCTYPE html>
2 <html>
3 <head>
4 <title>HTMLFont size</title>
5 </head>
6 <body>
7 <h1 style="color:red;font-size:40px;">Heading</h1>
8 <p style="color:blue;font-size:18px;">This is demo text</p>
9 </body>
10</html>