Use on the webTotal Use [ 5428 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/7a54297581432cc9ee61299c13c9274b?family=Origin+Sup+Cond+Web+Light+Regular" 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/7a54297581432cc9ee61299c13c9274b?family=Origin+Sup+Cond+Web+Light+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Origin Sup Cond Web Light Regular";
src: url("https://db.onlinewebfonts.com/t/7a54297581432cc9ee61299c13c9274b.eot");
src: url("https://db.onlinewebfonts.com/t/7a54297581432cc9ee61299c13c9274b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7a54297581432cc9ee61299c13c9274b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7a54297581432cc9ee61299c13c9274b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7a54297581432cc9ee61299c13c9274b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7a54297581432cc9ee61299c13c9274b.svg#Origin Sup Cond Web Light Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Origin Sup Cond Web Light Regular";