is this possible to change the markdown's font style in Colab?
I wrote this CSS code but as it doesn't work, I don't know how to use it (or if it's possible or not).
The code perfectly works in a html file but not working on Colab:
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Alike+Angular&display=swap" rel="stylesheet">
<style>
p {
font-family: 'Alike Angular', serif;
font-size: 22px;
}
</style>
</head>
</html>
<span>
<p>Lorem ipsum dolor sit amet,</p>
</span>