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