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