What’s the name of the default write.as font?
Thank you @matt – if I wanted to specify in CSS that headers only use “lora”, how would I do that (or can you point me to a resource)?
If you’re looking to show all headers in Lora, this should do:
h1, h2, h3 {
font-family: Lora, serif;
}
Otherwise, if you just want post headers to use Lora, just drop h1,
from the list.
1 Like