One of the most important parts of a website is the text. We can modify text in a lot of ways, from the size to the style or thickness.

<html>
<head>
<style>
</style>
</head>
<body>

<p style="font-family: papyrus;">Papyrus font</p>
<p style="font-style: italic;">Italic Text</p>
<p style="font-weight: bold;">Bold text</p>
<p style="font-style: italic;font-weight: bold;">Bold and italic text</p>
<p style="font-size: 24px;">Bigger text</p>
<p style="font-size: 8px;">Small text</p>

</body>
</html>]]>