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