« Web, HTML, Tech Forum

Fonts?

I'm new to the whole HTMl/CSS coding thing. Anyway to import fonts from google fonts?


Thanks, BraveMushroom


Report Topic

1 Reply

Reply by noriaki (nure)

posted

I haven't tried this in Spacehey myself, but you could try something like this:


@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

body {

font-family: 'Muli', sans-serif;

}


Found it here


Permalink Report Reply