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