cool html fonts
<html>
<body>
<p>You can use google fonts. There are many fonts available.</p>
Select the font you want to use. Copy the code to use it.
You can import it with HTML or CSS
Paste it in your website.
Apply styles to it. Example:
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=STIX+Two+Math&display=swap" rel="stylesheet">
<style>
p {
font-family: 'STIX Two Math', serif;
}
/* import font in css */
@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Math&display=swap');
</style>
</body>
</html>