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