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