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