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