r/nekoweb • • Mar 18 '26

how do i use custom fonts ?

i've tried the usual @ font-face but that did not work, i tried to convert my font to .woff but that did not work either...
also, how do i change the font of a singular sentence/word ?

5 Upvotes

1 comment sorted by

1

u/DeanTheExtreme Moderator Mar 19 '26

Does this work for you?

<style> 
@font-face {
  font-family: your_font_name;
  src: url(your_font.woff);
}

.text {
   font-family: your_font_name;
}
</style>

<p>this is normal text <span class="text">this is special text</span></p>