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