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