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