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