To change how big text is, we use the font-size
property.
<body>
<p style="font-size">Avatar</p>
</body>
We measure elements on a webpage with pixels. To specify a size, we add a number, like 60
.
<body>
<p style="font-size: 60px;">Avatar</p>
</body>