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