Joan
Joan

Reputation: 422

How do i get thin fonts when using google fonts? I used font weight:thin; but it doesn't do anything

Example

p { font-weight: thin}
<p>This sentence is thin</p>

Upvotes: 0

Views: 164

Answers (1)

piyum madusanka
piyum madusanka

Reputation: 36

< Font weight list

  1. 100 — Thin / Extra Thin / Hairline
  2. 200 — Extra Light / Ultra Light
  3. 300 — Light
  4. 400 — Regular (Normal)
  5. 500 — Medium
  6. 600 — Semi Bold / Demi Bold
  7. 700 — Bold
  8. 800 — Extra Bold / Ultra Bold
  9. 900 — Black / Ultra Black / Heavy

Blockquote

!-- begin snippet: js hide: false console: true babel: false -->

p { font-weight:100;font-family:'Open Sans',sans-serif;}
<p>This sentence is thin</p>

Upvotes: 2

Related Questions