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