Font weight not working

Viewed 9518

I am having a problem getting the lighter font weights to work. I have font with all the weights I want to use on my computer yet it won't work. I found that A lot of fonts wont work with lighter weights. Whats going on?

https://jsfiddle.net/ywr2ks1p/

p{
  font-family: museo sans;
  font-weight: 100;
  font-size: 50px;
}
<div>
  <p>
  hello I am some text
  </p>
</div>

2 Answers

check font family. Few of them will show normal weight till 500. E.g. font-family: Rubik, sans-serif; will not show much difference when weight is till 500

Related