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