I am hoping I can get some help here, would really appreciate it. I am trying to use a custom font...but for some reason it is not working... this is my code so far:
<style>
@font-face {
font-family: "coolest";
src: url('http://domain.com/fonts/lalo.ttf') format('truetype');
}
h1 {
font: 'coolest';
}
</style>
<h1>HELLO</h1>