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