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