Use on the webTotal Use [ 4456 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/056f6c04b8b748fb0f677674d6e4d4ba?family=Origin+Light" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/056f6c04b8b748fb0f677674d6e4d4ba?family=Origin+Light);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Origin Light";
src: url("https://db.onlinewebfonts.com/t/056f6c04b8b748fb0f677674d6e4d4ba.eot");
src: url("https://db.onlinewebfonts.com/t/056f6c04b8b748fb0f677674d6e4d4ba.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/056f6c04b8b748fb0f677674d6e4d4ba.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/056f6c04b8b748fb0f677674d6e4d4ba.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/056f6c04b8b748fb0f677674d6e4d4ba.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/056f6c04b8b748fb0f677674d6e4d4ba.svg#Origin Light")format("svg");
}
2CSS rules to specify fonts
font-family: "Origin Light";